From 14e3000983cf98d12dab9560f7ee0e3cbcc5ddfb Mon Sep 17 00:00:00 2001 From: dshaligram Date: Wed, 20 Jun 2007 19:57:53 +0000 Subject: Fixed broken compile on DOS and Windows. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1611 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/libdos.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'crawl-ref/source/libdos.h') diff --git a/crawl-ref/source/libdos.h b/crawl-ref/source/libdos.h index fd6a0a0d92..38bbd48699 100644 --- a/crawl-ref/source/libdos.h +++ b/crawl-ref/source/libdos.h @@ -12,7 +12,7 @@ void set_cursor_enabled(bool enabled); bool is_cursor_enabled(); void clear_to_end_of_line(); int getch_ck(); -void set_mouse_enabled(bool enabled) { } +static inline void set_mouse_enabled(bool enabled) { } void message_out(int mline, int colour, const char *str, int firstcol = 0, bool newline = true); @@ -21,9 +21,6 @@ inline void update_screen() { } -inline void putwch(unsigned c) -{ - putch(static_cast(c)); -} +void putwch(unsigned c); #endif -- cgit v1.2.3-54-g00ecf