mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-27 04:07:05 +00:00
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:
parent
1e78908d17
commit
66f98c794c
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user