diff options
author | Max Horn | 2002-07-19 01:41:41 +0000 |
---|---|---|
committer | Max Horn | 2002-07-19 01:41:41 +0000 |
commit | 7e6d2affa84e3a9dafa852605c1cc63d974df979 (patch) | |
tree | c566bf5877721602314565bb66202d0cc28aefb4 /gui | |
parent | e48fbc08e62607d14a43a348f88a2a96c2de32f5 (diff) | |
download | scummvm-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.h | 9 |
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 |