diff options
author | Johannes Schickel | 2010-06-26 18:07:41 +0000 |
---|---|---|
committer | Johannes Schickel | 2010-06-26 18:07:41 +0000 |
commit | 58fcda82f33e3ba8f813eeac412612ae09a34c9f (patch) | |
tree | 12d706da8a48a7a937e4dc2b5221010ba6613726 /gui | |
parent | 9a0e2e9c461547b1a2d8bf32a3e7ba52853358f5 (diff) | |
download | scummvm-rg350-58fcda82f33e3ba8f813eeac412612ae09a34c9f.tar.gz scummvm-rg350-58fcda82f33e3ba8f813eeac412612ae09a34c9f.tar.bz2 scummvm-rg350-58fcda82f33e3ba8f813eeac412612ae09a34c9f.zip |
Remove support for translation of console messages.
In recent discussions on -devel it turned out, that this
feature is rather superfluous and instead we should rather
implement a proper error reporting in our GUI.
I also removed the dependency on iconv along with this.
svn-id: r50335
Diffstat (limited to 'gui')
-rw-r--r-- | gui/GuiManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/GuiManager.cpp b/gui/GuiManager.cpp index fbcacf2d16..ff747c6e92 100644 --- a/gui/GuiManager.cpp +++ b/gui/GuiManager.cpp @@ -73,7 +73,7 @@ GuiManager::GuiManager() : _redrawStatus(kRedrawDisabled), // Loading the theme failed, try to load the built-in theme if (!loadNewTheme("builtin", gfxMode)) { // Loading the built-in theme failed as well. Bail out - error("%s", _t("Failed to load any GUI theme, aborting")); + error("Failed to load any GUI theme, aborting"); } } |