aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/screen.h
diff options
context:
space:
mode:
authorPaul Gilbert2015-05-19 00:26:23 -0400
committerPaul Gilbert2015-05-19 00:26:23 -0400
commit66f98c794cab091858954ee71a9b7680e4d6ef38 (patch)
tree01f46ccec8379f0f1affeebbf1d7c4c547239611 /engines/sherlock/screen.h
parent1e78908d170688e046cf18be841ee3c4aa41e53b (diff)
downloadscummvm-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
Diffstat (limited to 'engines/sherlock/screen.h')
-rw-r--r--engines/sherlock/screen.h4
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);