aboutsummaryrefslogtreecommitdiff
path: root/common/engine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/engine.cpp')
-rw-r--r--common/engine.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/engine.cpp b/common/engine.cpp
index 5352fd025c..0d4a0339af 100644
--- a/common/engine.cpp
+++ b/common/engine.cpp
@@ -63,11 +63,11 @@ const char *Engine::getSavePath() const
// If SCUMMVM_SAVEPATH was not specified, try to use game specific savepath from config
if (!dir || dir[0] == 0)
- dir = scummcfg->get("savepath");
+ dir = g_config->get("savepath");
// If SCUMMVM_SAVEPATH was not specified, try to use general path from config
if (!dir || dir[0] == 0)
- dir = scummcfg->get("savepath", "scummvm");
+ dir = g_config->get("savepath", "scummvm");
// If no save path was specified, use no directory prefix
if (dir == NULL)