aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo/util.h
diff options
context:
space:
mode:
authorArnaud Boutonné2010-08-27 09:48:53 +0000
committerArnaud Boutonné2010-08-27 09:48:53 +0000
commitec9708694e886746af0d45d30bbf271c2061053f (patch)
tree1b75a7291c13bb389175ca08896f7959395d4064 /engines/hugo/util.h
parentfd574d5e24ce10cd10f75b73f6f98327f4ce79ce (diff)
downloadscummvm-rg350-ec9708694e886746af0d45d30bbf271c2061053f.tar.gz
scummvm-rg350-ec9708694e886746af0d45d30bbf271c2061053f.tar.bz2
scummvm-rg350-ec9708694e886746af0d45d30bbf271c2061053f.zip
HUGO: Hopefully fix GCC_PRINTF issue in util
* Add a mask in each call of Warn(), Error() and Box() not using one * cleanup: use the same wording for 'End of namespace Hugo' in all files svn-id: r52406
Diffstat (limited to 'engines/hugo/util.h')
-rw-r--r--engines/hugo/util.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/hugo/util.h b/engines/hugo/util.h
index d4867d2682..f944baa324 100644
--- a/engines/hugo/util.h
+++ b/engines/hugo/util.h
@@ -53,11 +53,11 @@ int firstBit(byte data);
int lastBit(byte data);
void reverseByte(byte *data);
void Warn(bool technote, const char *format, ...) GCC_PRINTF(2, 3);
-void Error(int code, const char *format, ...); // FIXME GCC_PRINTF(2, 3);
+void Error(int code, const char *format, ...) GCC_PRINTF(2, 3);
void gameOverMsg();
-// void Debug_out(char *format, ...) GCC_PRINTF(1, 2);
-char *Box(box_t, const char *, ...); // FIXME GCC_PRINTF(2, 3);
+char *Box(box_t, const char *, ...) GCC_PRINTF(2, 3);
}
-} // Namespace Hugo
+} // End of namespace Hugo
+
#endif