diff options
author | Jonathan Gray | 2003-08-21 13:39:21 +0000 |
---|---|---|
committer | Jonathan Gray | 2003-08-21 13:39:21 +0000 |
commit | ce42f4d3dd461ced69470ea70e4f840c8abfb246 (patch) | |
tree | 2cb607f30318011bcd8c5f52e20f04d88400d1b4 /sword2 | |
parent | 255c7ae5ff8c8f526de349246cdaf73506a85e81 (diff) | |
download | scummvm-rg350-ce42f4d3dd461ced69470ea70e4f840c8abfb246.tar.gz scummvm-rg350-ce42f4d3dd461ced69470ea70e4f840c8abfb246.tar.bz2 scummvm-rg350-ce42f4d3dd461ced69470ea70e4f840c8abfb246.zip |
patch #791738 g++ 3.4 compile fix, from Falk Hueffner and a few minor local bits in my tree
svn-id: r9807
Diffstat (limited to 'sword2')
-rw-r--r-- | sword2/console.cpp | 12 | ||||
-rw-r--r-- | sword2/debug.cpp | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/sword2/console.cpp b/sword2/console.cpp index 81cbfb4657..bfcbdea369 100644 --- a/sword2/console.cpp +++ b/sword2/console.cpp @@ -1329,11 +1329,11 @@ void Con_display_events() // (James11july97) #else // not debug -void Print_to_console(const char *format,...) {}; -void Temp_print_to_console(const char *format,...) {}; -void Clear_console_line(void) {}; -void Scroll_console(void) {}; -void Init_console(void) {}; -void StartConsole(void) {}; +void Print_to_console(const char *format,...) {} +void Temp_print_to_console(const char *format,...) {} +void Clear_console_line(void) {} +void Scroll_console(void) {} +void Init_console(void) {} +void StartConsole(void) {} #endif // _SWORD2_DEBUG diff --git a/sword2/debug.cpp b/sword2/debug.cpp index 41a0e184ad..6f2cb6891e 100644 --- a/sword2/debug.cpp +++ b/sword2/debug.cpp @@ -547,7 +547,7 @@ void Print_current_info(void) //Tony30Oct96 //-------------------------------------------------------------------------------------- #else // not debug -void Draw_debug_graphics(void) {}; +void Draw_debug_graphics(void) {} #endif // _SWORD2_DEBUG //-------------------------------------------------------------------------------------- |