diff options
author | Travis Howell | 2006-01-14 09:41:34 +0000 |
---|---|---|
committer | Travis Howell | 2006-01-14 09:41:34 +0000 |
commit | 319cd187c8dfecc870cd6a511d7e982a8e90e341 (patch) | |
tree | 15548bba34ac2b11c42cbd0c1dcf0a6e20dcf485 | |
parent | ad537d92a6c392264db49fac9661012d326418a5 (diff) | |
download | scummvm-rg350-319cd187c8dfecc870cd6a511d7e982a8e90e341.tar.gz scummvm-rg350-319cd187c8dfecc870cd6a511d7e982a8e90e341.tar.bz2 scummvm-rg350-319cd187c8dfecc870cd6a511d7e982a8e90e341.zip |
Should have commited this too.
svn-id: r20018
-rw-r--r-- | scumm/dialogs.cpp | 2 | ||||
-rw-r--r-- | scumm/help.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/scumm/dialogs.cpp b/scumm/dialogs.cpp index fc9151f602..42e8f76168 100644 --- a/scumm/dialogs.cpp +++ b/scumm/dialogs.cpp @@ -794,7 +794,7 @@ void HelpDialog::displayKeyBindings() { String titleStr, *keyStr, *dscStr; - ScummHelp::updateStrings(_vm->_gameId, _vm->_version, _page, titleStr, keyStr, dscStr); + ScummHelp::updateStrings(_vm->_gameId, _vm->_version, _vm->_platform, _page, titleStr, keyStr, dscStr); _title->setLabel(titleStr); for (int i = 0; i < HELP_NUM_LINES; i++) { diff --git a/scumm/help.h b/scumm/help.h index fbf1026e1e..34819f1317 100644 --- a/scumm/help.h +++ b/scumm/help.h @@ -34,8 +34,8 @@ protected: public: static int numPages(byte gameId); - static void updateStrings(byte gameId, byte version, int page, - String &title, String *&key, String *&dsc); + static void updateStrings(byte gameId, byte version, Common::Platform platform, + int page, String &title, String *&key, String *&dsc); }; } // End of namespace Scumm |