diff options
author | Eugene Sandulenko | 2006-03-07 18:26:04 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2006-03-07 18:26:04 +0000 |
commit | d7bc756edcc4a69d8e016670e78901bcce94ebe4 (patch) | |
tree | bec33b72cf29ccc21419e0b0c8e323af6e1c9c0b | |
parent | 3f31e1b27dd1d392d5bdff26a99712b3682eace9 (diff) | |
download | scummvm-rg350-d7bc756edcc4a69d8e016670e78901bcce94ebe4.tar.gz scummvm-rg350-d7bc756edcc4a69d8e016670e78901bcce94ebe4.tar.bz2 scummvm-rg350-d7bc756edcc4a69d8e016670e78901bcce94ebe4.zip |
Add XxH to evaluation precedence.
svn-id: r21127
-rw-r--r-- | gui/theme-config.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gui/theme-config.cpp b/gui/theme-config.cpp index a565d47235..20ee93fdd5 100644 --- a/gui/theme-config.cpp +++ b/gui/theme-config.cpp @@ -193,6 +193,10 @@ void Theme::loadTheme(Common::ConfigFile &config, bool reset) { if (config.hasSection(name)) processResSection(config, name); + sprintf(name, "Xx%d", y); + if (config.hasSection(name)) + processResSection(config, name); + sprintf(name, "%dx%d", x, y); if (config.hasSection(name)) processResSection(config, name); |