diff options
-rw-r--r-- | gui/theme-config.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/theme-config.cpp b/gui/theme-config.cpp index 74c283f5c1..5c58aeb56c 100644 --- a/gui/theme-config.cpp +++ b/gui/theme-config.cpp @@ -513,7 +513,7 @@ void Theme::processResSection(Common::ConfigFile &config, const String &name, bo } if (iterk->key == "useWithPrefix") { const char *temp = iterk->value.c_str(); - const char *pos = strrchr(temp, ' '); + const char *pos = strrchr(temp, ' '); if (pos == NULL) error("2 arguments required for useWithPrefix keyword"); |