diff options
author | Andre Heider | 2009-09-02 16:08:01 +0000 |
---|---|---|
committer | Andre Heider | 2009-09-02 16:08:01 +0000 |
commit | 57e28df8cde65ab8f5443623b3fb4a9dda08a02f (patch) | |
tree | e104cde136f7158a3dfc51ff9032677c16d46ef4 | |
parent | 2f99fea9a3c5c7d0c83d8b4ba5fc33bd91abf5ec (diff) | |
download | scummvm-rg350-57e28df8cde65ab8f5443623b3fb4a9dda08a02f.tar.gz scummvm-rg350-57e28df8cde65ab8f5443623b3fb4a9dda08a02f.tar.bz2 scummvm-rg350-57e28df8cde65ab8f5443623b3fb4a9dda08a02f.zip |
Fixed thumbnail gfx glitches on savegames
svn-id: r43910
-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) { |