diff options
author | Paul Gilbert | 2015-05-19 00:26:23 -0400 |
---|---|---|
committer | Paul Gilbert | 2015-05-19 00:26:23 -0400 |
commit | 66f98c794cab091858954ee71a9b7680e4d6ef38 (patch) | |
tree | 01f46ccec8379f0f1affeebbf1d7c4c547239611 | |
parent | 1e78908d170688e046cf18be841ee3c4aa41e53b (diff) | |
download | scummvm-rg350-66f98c794cab091858954ee71a9b7680e4d6ef38.tar.gz scummvm-rg350-66f98c794cab091858954ee71a9b7680e4d6ef38.tar.bz2 scummvm-rg350-66f98c794cab091858954ee71a9b7680e4d6ef38.zip |
SHERLOCK: Remove GCC_PRINTF to fix gcc compilation
There are simply too many places that simply pass a string directly
to the print methods rather than a format string
-rw-r--r-- | engines/sherlock/screen.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sherlock/screen.h b/engines/sherlock/screen.h index 452a18631f..2103588fe0 100644 --- a/engines/sherlock/screen.h +++ b/engines/sherlock/screen.h @@ -101,8 +101,8 @@ public: void verticalTransition(); - void print(const Common::Point &pt, byte color, const char *formatStr, ...) GCC_PRINTF(4, 5); - void gPrint(const Common::Point &pt, byte color, const char *formatStr, ...) GCC_PRINTF(4, 5); + void print(const Common::Point &pt, byte color, const char *formatStr, ...); + void gPrint(const Common::Point &pt, byte color, const char *formatStr, ...); void restoreBackground(const Common::Rect &r); |