aboutsummaryrefslogtreecommitdiff
path: root/gui/themebrowser.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2006-10-08 18:49:25 +0000
committerJohannes Schickel2006-10-08 18:49:25 +0000
commit1ced1777f8baca3e93bd7adfeea3a9a1e66a8cb4 (patch)
treeab58768acbf2595ed6cd54b517d388e70b007497 /gui/themebrowser.cpp
parent0b75c747177fdba2910dd92ae427ee03d10f6a53 (diff)
downloadscummvm-rg350-1ced1777f8baca3e93bd7adfeea3a9a1e66a8cb4.tar.gz
scummvm-rg350-1ced1777f8baca3e93bd7adfeea3a9a1e66a8cb4.tar.bz2
scummvm-rg350-1ced1777f8baca3e93bd7adfeea3a9a1e66a8cb4.zip
- Forcing 'classic' as the builtin classic theme (which means it ignores the classic.ini atm)
svn-id: r24216
Diffstat (limited to 'gui/themebrowser.cpp')
-rw-r--r--gui/themebrowser.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/gui/themebrowser.cpp b/gui/themebrowser.cpp
index 5bda962db1..5b20d51996 100644
--- a/gui/themebrowser.cpp
+++ b/gui/themebrowser.cpp
@@ -82,6 +82,13 @@ void ThemeBrowser::handleCommand(CommandSender *sender, uint32 cmd, uint32 data)
void ThemeBrowser::updateListing() {
_themes.clear();
+
+ // classic is always build in
+ Entry th;
+ th.name = "classic";
+ th.type = "classic";
+ th.file = "classic";
+ _themes.push_back(th);
if (ConfMan.hasKey("themepath"))
addDir(_themes, ConfMan.get("themepath"), 0);