aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorMax Horn2002-07-19 01:41:41 +0000
committerMax Horn2002-07-19 01:41:41 +0000
commit7e6d2affa84e3a9dafa852605c1cc63d974df979 (patch)
treec566bf5877721602314565bb66202d0cc28aefb4 /gui
parente48fbc08e62607d14a43a348f88a2a96c2de32f5 (diff)
downloadscummvm-rg350-7e6d2affa84e3a9dafa852605c1cc63d974df979.tar.gz
scummvm-rg350-7e6d2affa84e3a9dafa852605c1cc63d974df979.tar.bz2
scummvm-rg350-7e6d2affa84e3a9dafa852605c1cc63d974df979.zip
disable transparency for the pause dialog for now
svn-id: r4598
Diffstat (limited to 'gui')
-rw-r--r--gui/dialog.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/gui/dialog.h b/gui/dialog.h
index c42cb8ee27..bccd2b9cf2 100644
--- a/gui/dialog.h
+++ b/gui/dialog.h
@@ -66,8 +66,8 @@ public:
NewGui *getGui() { return _gui; }
- void setupScreenBuf();
- void teardownScreenBuf();
+ virtual void setupScreenBuf();
+ virtual void teardownScreenBuf();
protected:
Widget* findWidget(int x, int y); // Find the widget at pos x,y if any
@@ -117,6 +117,11 @@ public:
else
Dialog::handleKeyDown(key, modifiers);
}
+
+ // Enforce no transparency!
+ virtual void setupScreenBuf() {}
+ virtual void teardownScreenBuf() {}
+
};
#endif