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
This commit is contained in:
Paul Gilbert 2015-05-19 00:26:23 -04:00
parent 1e78908d17
commit 66f98c794c

View File

@ -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);