diff options
author | Eugene Sandulenko | 2016-01-21 11:56:15 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2016-02-14 17:12:49 +0100 |
commit | 632825d71bb54020c343db4ae45f6af221531557 (patch) | |
tree | b04f22001274f5a1d3718fcfc71ab1e0e935aa4e /engines | |
parent | ad02d2eb953f721049623242366f7e15539746ad (diff) | |
download | scummvm-rg350-632825d71bb54020c343db4ae45f6af221531557.tar.gz scummvm-rg350-632825d71bb54020c343db4ae45f6af221531557.tar.bz2 scummvm-rg350-632825d71bb54020c343db4ae45f6af221531557.zip |
WAGE: Fix crash on menu exiting
Diffstat (limited to 'engines')
-rw-r--r-- | engines/wage/dialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/wage/dialog.cpp b/engines/wage/dialog.cpp index 88b2c65d5f..69bef75fbd 100644 --- a/engines/wage/dialog.cpp +++ b/engines/wage/dialog.cpp @@ -188,7 +188,7 @@ int Dialog::run() { g_system->delayMillis(50); } - _tempSurface.copyRectToSurface(_gui->_screen, r.left, r.top, r); + _tempSurface.copyRectToSurface(_gui->_screen, 0, 0, r); return _pressedButton; } |