Skip to content

Commit

Permalink
SHERLOCK: Remove GCC_PRINTF to fix gcc compilation
Browse files Browse the repository at this point in the history
There are simply too many places that simply pass a string directly
to the print methods rather than a format string
  • Loading branch information
dreammaster committed May 19, 2015
1 parent 1e78908 commit 66f98c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engines/sherlock/screen.h
Expand Up @@ -101,8 +101,8 @@ class Screen : public Surface {

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

Expand Down

0 comments on commit 66f98c7

Please sign in to comment.