aboutsummaryrefslogtreecommitdiff
path: root/gui/newgui.cpp
diff options
context:
space:
mode:
authorMax Horn2002-11-10 19:39:32 +0000
committerMax Horn2002-11-10 19:39:32 +0000
commitbc883a5f1ac2c5dd375ce868dd085466001e4b8d (patch)
treeff3cbc88860b8234b1db6655fd92de4008fc828d /gui/newgui.cpp
parent843fa5f7533929d8f037ff3eec747f6fc15bd396 (diff)
downloadscummvm-rg350-bc883a5f1ac2c5dd375ce868dd085466001e4b8d.tar.gz
scummvm-rg350-bc883a5f1ac2c5dd375ce868dd085466001e4b8d.tar.bz2
scummvm-rg350-bc883a5f1ac2c5dd375ce868dd085466001e4b8d.zip
fixed dialog redrawing (when you switched in the save/load dialog between save and load mode, it would loose the transparency)
svn-id: r5512
Diffstat (limited to 'gui/newgui.cpp')
-rw-r--r--gui/newgui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/newgui.cpp b/gui/newgui.cpp
index d070b5ab25..e7b492dc9e 100644
--- a/gui/newgui.cpp
+++ b/gui/newgui.cpp
@@ -119,7 +119,7 @@ void NewGui::runLoop()
_system->clear_overlay();
_system->grab_overlay(_screen, _screenPitch);
for (int i = 0; i < _dialogStack.size(); i++)
- _dialogStack[i]->draw();
+ _dialogStack[i]->drawDialog();
_needRedraw = false;
}