From 66f98c794cab091858954ee71a9b7680e4d6ef38 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Tue, 19 May 2015 00:26:23 -0400 Subject: [PATCH] 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 --- engines/sherlock/screen.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engines/sherlock/screen.h b/engines/sherlock/screen.h index 452a18631f0b..2103588fe03e 100644 --- a/engines/sherlock/screen.h +++ b/engines/sherlock/screen.h @@ -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);