aboutsummaryrefslogtreecommitdiff
path: root/sword2/debug.h
diff options
context:
space:
mode:
authorMax Horn2003-07-28 02:10:24 +0000
committerMax Horn2003-07-28 02:10:24 +0000
commit80bea5bc7201dbee7b1193c22c18cc6219180731 (patch)
tree558960c51a6f34208e8cd0ff744ae3b3ce3903bc /sword2/debug.h
parent88b70db20f641c7f177935c18db5383400c3f32c (diff)
downloadscummvm-rg350-80bea5bc7201dbee7b1193c22c18cc6219180731.tar.gz
scummvm-rg350-80bea5bc7201dbee7b1193c22c18cc6219180731.tar.bz2
scummvm-rg350-80bea5bc7201dbee7b1193c22c18cc6219180731.zip
fixed some warnings
svn-id: r9216
Diffstat (limited to 'sword2/debug.h')
-rw-r--r--sword2/debug.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sword2/debug.h b/sword2/debug.h
index 0ecca67830..7e8a7d49e2 100644
--- a/sword2/debug.h
+++ b/sword2/debug.h
@@ -61,8 +61,8 @@ extern uint32 player_graphic_no_frames;
extern int32 showVar[MAX_SHOWVARS];
-void Zdebug(char * ,...); // Tony's special debug logging file March96
-void Zdebug(uint32 stream, char *format,...);
+void Zdebug(const char * ,...); // Tony's special debug logging file March96
+void Zdebug(uint32 stream, const char *format,...);
void Build_debug_text(void); // James's debug text display
void Draw_debug_graphics(void); // James's debug graphics display
@@ -78,14 +78,14 @@ void Print_current_info(void); //Tony30Oct96
#define Print_current_info NULL
*/
-void Zdebug(char * ,...); // Tony's special debug logging file March96
+void Zdebug(const char * ,...); // Tony's special debug logging file March96
void Build_debug_text(void); // James's debug text display
void Draw_debug_graphics(void); // James's debug graphics display
#endif // _DEBUG // this whole file only included on debug versions
//--------------------------------------------------------------------------------------
-void ExitWithReport(char *format,...); // (6dec96 JEL) IN BOTH DEBUG & RELEASE VERSIONS
+void ExitWithReport(const char *format,...); // (6dec96 JEL) IN BOTH DEBUG & RELEASE VERSIONS