aboutsummaryrefslogtreecommitdiff
path: root/engines/cine/detection.cpp
diff options
context:
space:
mode:
authorMax Horn2010-07-16 21:56:30 +0000
committerMax Horn2010-07-16 21:56:30 +0000
commit587f3cf9586f019b59e7a4145e692ebde73d52df (patch)
tree3a01c42899c27e6987cea587944b51b159fc855e /engines/cine/detection.cpp
parente75eee21e38c71ae67382ff83ce926991f58743a (diff)
downloadscummvm-rg350-587f3cf9586f019b59e7a4145e692ebde73d52df.tar.gz
scummvm-rg350-587f3cf9586f019b59e7a4145e692ebde73d52df.tar.bz2
scummvm-rg350-587f3cf9586f019b59e7a4145e692ebde73d52df.zip
CINE: Get rid of g_saveFileMan
svn-id: r50944
Diffstat (limited to 'engines/cine/detection.cpp')
-rw-r--r--engines/cine/detection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/cine/detection.cpp b/engines/cine/detection.cpp
index b92ad8a0a2..9dfa2f71ea 100644
--- a/engines/cine/detection.cpp
+++ b/engines/cine/detection.cpp
@@ -251,7 +251,7 @@ Common::Error CineEngine::saveGameState(int slot, const char *desc) {
char indexFile[80];
snprintf(indexFile, 80, "%s.dir", _targetName.c_str());
- Common::OutSaveFile *fHandle = g_saveFileMan->openForSaving(indexFile);
+ Common::OutSaveFile *fHandle = _saveFileMan->openForSaving(indexFile);
if (!fHandle) {
warning("Unable to open file %s for saving", indexFile);
return Common::kUnknownError;