aboutsummaryrefslogtreecommitdiff
path: root/gui/launcher.h
diff options
context:
space:
mode:
authorJohannes Schickel2006-04-17 18:50:33 +0000
committerJohannes Schickel2006-04-17 18:50:33 +0000
commit955b53fb883451a7d3079ee28dc6f0fd07d606ab (patch)
treee8db4a4ae884d5be500b0f250b3277c236e603f4 /gui/launcher.h
parent43143daca7b4a7137252e125bb9319e3e26f6ee9 (diff)
downloadscummvm-rg350-955b53fb883451a7d3079ee28dc6f0fd07d606ab.tar.gz
scummvm-rg350-955b53fb883451a7d3079ee28dc6f0fd07d606ab.tar.bz2
scummvm-rg350-955b53fb883451a7d3079ee28dc6f0fd07d606ab.zip
Fixes bug with wrong colors in the logo after a screen change. (this time it works!)
svn-id: r21984
Diffstat (limited to 'gui/launcher.h')
-rw-r--r--gui/launcher.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/gui/launcher.h b/gui/launcher.h
index 44d4e51c50..b5320937c4 100644
--- a/gui/launcher.h
+++ b/gui/launcher.h
@@ -31,6 +31,7 @@ namespace GUI {
class BrowserDialog;
class ListWidget;
+class GraphicsWidget;
class LauncherDialog : public Dialog {
typedef Common::String String;
@@ -46,6 +47,9 @@ protected:
Widget *_startButton;
Widget *_editButton;
Widget *_removeButton;
+#ifndef DISABLE_FANCY_THEMES
+ GraphicsWidget *_logo;
+#endif
StringList _domains;
GameDetector &_detector;
BrowserDialog *_browser;