diff options
author | Johannes Schickel | 2006-10-08 18:49:25 +0000 |
---|---|---|
committer | Johannes Schickel | 2006-10-08 18:49:25 +0000 |
commit | 1ced1777f8baca3e93bd7adfeea3a9a1e66a8cb4 (patch) | |
tree | ab58768acbf2595ed6cd54b517d388e70b007497 /gui/themebrowser.cpp | |
parent | 0b75c747177fdba2910dd92ae427ee03d10f6a53 (diff) | |
download | scummvm-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.cpp | 7 |
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); |