diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/kyra/screen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/screen.cpp b/engines/kyra/screen.cpp index 6ef9ee9c21..1ca67fc1d1 100644 --- a/engines/kyra/screen.cpp +++ b/engines/kyra/screen.cpp @@ -2489,7 +2489,7 @@ void Screen::loadPalette(const char *filename, uint8 *palData) { } void Screen::loadPalette(const byte *data, uint8 *palData, int bytes) { - debugC(9, kDebugLevelScreen, "Screen::loadPalette(%p, %p %d)", (void *)data, (void *)palData, bytes); + debugC(9, kDebugLevelScreen, "Screen::loadPalette(%p, %p %d)", (const void *)data, (void *)palData, bytes); memcpy(palData, data, bytes); } |