TOLTECS: Removed now uneeded c_str() call.

This commit is contained in:
David Turner 2011-06-19 14:44:31 +00:00 committed by Willem Jan Palenstijn
parent c545a8b176
commit 9b885d0c50

View file

@ -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;
}