aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sci.cpp
diff options
context:
space:
mode:
authorMax Horn2009-09-22 01:08:42 +0000
committerMax Horn2009-09-22 01:08:42 +0000
commitc5cc78580253968ae3cfe2dddbce9b8b7b388f65 (patch)
treec93e16e023ec950bee679c9c0ca875c5bc1d0eed /engines/sci/sci.cpp
parent6424a1e9e254798bdc31ec32e6b754805681d116 (diff)
downloadscummvm-rg350-c5cc78580253968ae3cfe2dddbce9b8b7b388f65.tar.gz
scummvm-rg350-c5cc78580253968ae3cfe2dddbce9b8b7b388f65.tar.bz2
scummvm-rg350-c5cc78580253968ae3cfe2dddbce9b8b7b388f65.zip
SCI: Change SystemStrings to use RAW storage consistenly
svn-id: r44246
Diffstat (limited to 'engines/sci/sci.cpp')
-rw-r--r--engines/sci/sci.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/sci.cpp b/engines/sci/sci.cpp
index 507b666c99..ebba1b08f6 100644
--- a/engines/sci/sci.cpp
+++ b/engines/sci/sci.cpp
@@ -153,7 +153,7 @@ Common::Error SciEngine::run() {
// Set the savegame dir (actually, we set it to a fake value,
// since we cannot let the game control where saves are stored)
- script_set_gamestate_save_dir(_gamestate, "/");
+ strcpy(_gamestate->sys_strings->_strings[SYS_STRING_SAVEDIR]._value, "/");
GfxState gfx_state;
_gamestate->gfx_state = &gfx_state;