diff options
author | Johannes Schickel | 2006-10-08 18:53:10 +0000 |
---|---|---|
committer | Johannes Schickel | 2006-10-08 18:53:10 +0000 |
commit | a972fc57cd298afa43c9ea735ea7da0d6ff0a634 (patch) | |
tree | 39e3c059979100ddd247b1d2f0fa37fd1888fb0c /gui/themebrowser.cpp | |
parent | 1ced1777f8baca3e93bd7adfeea3a9a1e66a8cb4 (diff) | |
download | scummvm-rg350-a972fc57cd298afa43c9ea735ea7da0d6ff0a634.tar.gz scummvm-rg350-a972fc57cd298afa43c9ea735ea7da0d6ff0a634.tar.bz2 scummvm-rg350-a972fc57cd298afa43c9ea735ea7da0d6ff0a634.zip |
Added a comment about how the theme browser finds the themes.
svn-id: r24218
Diffstat (limited to 'gui/themebrowser.cpp')
-rw-r--r-- | gui/themebrowser.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gui/themebrowser.cpp b/gui/themebrowser.cpp index 5b20d51996..1ebe7eebde 100644 --- a/gui/themebrowser.cpp +++ b/gui/themebrowser.cpp @@ -90,6 +90,10 @@ void ThemeBrowser::updateListing() { th.file = "classic"; _themes.push_back(th); + // we are using only the paths 'themepath', 'extrapath', DATA_PATH and '.' + // since these are the default locations for the theme files + // files in other places are ignored in this dialog + // TODO: let the user browse the complete FS too/only the FS? if (ConfMan.hasKey("themepath")) addDir(_themes, ConfMan.get("themepath"), 0); |