diff options
-rw-r--r-- | engines/sci/graphics/screen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/graphics/screen.cpp b/engines/sci/graphics/screen.cpp index aa4ee0b638..56e6759fac 100644 --- a/engines/sci/graphics/screen.cpp +++ b/engines/sci/graphics/screen.cpp @@ -630,7 +630,7 @@ void GfxScreen::enableUndithering(bool flag) { int16 *GfxScreen::unditherGetDitheredBgColors() { if (_unditheringEnabled) - return (int16 *)&_ditheredPicColors; + return _ditheredPicColors; else return NULL; } |