diff options
-rw-r--r-- | backends/platform/wii/osystem_gfx.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/wii/osystem_gfx.cpp b/backends/platform/wii/osystem_gfx.cpp index 2ba2f5a44b..6e33fb463d 100644 --- a/backends/platform/wii/osystem_gfx.cpp +++ b/backends/platform/wii/osystem_gfx.cpp @@ -277,11 +277,11 @@ void OSystem_Wii::initSize(uint width, uint height, } int16 OSystem_Wii::getWidth() { - return _currentWidth; + return _gameWidth; } int16 OSystem_Wii::getHeight() { - return _currentHeight; + return _gameHeight; } void OSystem_Wii::setPalette(const byte *colors, uint start, uint num) { |