diff options
author | Johannes Schickel | 2009-09-13 20:21:08 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-09-13 20:21:08 +0000 |
commit | 6488cdc4fce31e31f05b169d5e15a2971902dd82 (patch) | |
tree | b9c7773d906a8d91d25d370b05ac9f37872ba67d /engines/kyra | |
parent | 072aca05dc1589d37b92d77c34d40f88d3855a63 (diff) | |
download | scummvm-rg350-6488cdc4fce31e31f05b169d5e15a2971902dd82.tar.gz scummvm-rg350-6488cdc4fce31e31f05b169d5e15a2971902dd82.tar.bz2 scummvm-rg350-6488cdc4fce31e31f05b169d5e15a2971902dd82.zip |
Fix gcc warning.
svn-id: r44070
Diffstat (limited to 'engines/kyra')
-rw-r--r-- | engines/kyra/gui_lol.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/gui_lol.cpp b/engines/kyra/gui_lol.cpp index 26edcfd017..5eb8f43534 100644 --- a/engines/kyra/gui_lol.cpp +++ b/engines/kyra/gui_lol.cpp @@ -2372,7 +2372,7 @@ int GUI_LoL::runMenu(Menu &menu) { if (_currentMenu == &_loadMenu || _currentMenu == &_deleteMenu) { if (_saveSlots.begin() == _saveSlots.end()) // "no savegames to load" message - _screen->fprintString(_vm->getLangString(0x4009), _currentMenu->x + _currentMenu->width / 2, _currentMenu->y + 42, 204, 0, 9); + _screen->fprintString("%s", _currentMenu->x + _currentMenu->width / 2, _currentMenu->y + 42, 204, 0, 9, _vm->getLangString(0x4009)); } if (hasSpecialButtons == 2) { |