diff options
author | David Turner | 2011-06-19 14:44:31 +0000 |
---|---|---|
committer | Willem Jan Palenstijn | 2011-11-20 22:43:11 +0100 |
commit | 9b885d0c5018c841fc616d182eb059eb9fd1b7f7 (patch) | |
tree | 49c24cc12e667d054af7c7964122f7ddafcc9654 | |
parent | c545a8b1763df661e46047bcedb052385d62a507 (diff) | |
download | scummvm-rg350-9b885d0c5018c841fc616d182eb059eb9fd1b7f7.tar.gz scummvm-rg350-9b885d0c5018c841fc616d182eb059eb9fd1b7f7.tar.bz2 scummvm-rg350-9b885d0c5018c841fc616d182eb059eb9fd1b7f7.zip |
TOLTECS: Removed now uneeded c_str() call.
-rw-r--r-- | engines/toltecs/script.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/toltecs/script.cpp b/engines/toltecs/script.cpp index 53af5f9f00..8f534ef398 100644 --- a/engines/toltecs/script.cpp +++ b/engines/toltecs/script.cpp @@ -192,7 +192,7 @@ void ScriptInterpreter::runScript() { if (_vm->_saveLoadRequested == 1) _vm->loadGameState(_vm->_saveLoadSlot); else if (_vm->_saveLoadRequested == 2) - _vm->saveGameState(_vm->_saveLoadSlot, _vm->_saveLoadDescription.c_str()); + _vm->saveGameState(_vm->_saveLoadSlot, _vm->_saveLoadDescription); _vm->_saveLoadRequested = 0; } |