aboutsummaryrefslogtreecommitdiff
path: root/engines/hopkins/hopkins.cpp
diff options
context:
space:
mode:
authorStrangerke2012-12-20 00:30:01 +0100
committerStrangerke2012-12-20 00:30:01 +0100
commit687b7f97df666c392af6f0f4ff3eca7832b1b313 (patch)
tree2207fe7cdd3a2c9463e712cfcf69dd00b7ebde44 /engines/hopkins/hopkins.cpp
parent076546d41d1454c87317b5e53c2b322865331d92 (diff)
downloadscummvm-rg350-687b7f97df666c392af6f0f4ff3eca7832b1b313.tar.gz
scummvm-rg350-687b7f97df666c392af6f0f4ff3eca7832b1b313.tar.bz2
scummvm-rg350-687b7f97df666c392af6f0f4ff3eca7832b1b313.zip
HOPKINS: Remane functions and variables from Globals
Diffstat (limited to 'engines/hopkins/hopkins.cpp')
-rw-r--r--engines/hopkins/hopkins.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/hopkins/hopkins.cpp b/engines/hopkins/hopkins.cpp
index 27504dce08..1792cf472a 100644
--- a/engines/hopkins/hopkins.cpp
+++ b/engines/hopkins/hopkins.cpp
@@ -82,14 +82,14 @@ bool HopkinsEngine::canSaveGameStateCurrently() {
* Load the savegame at the specified slot index
*/
Common::Error HopkinsEngine::loadGameState(int slot) {
- return _saveLoadManager.restore(slot);
+ return _saveLoadManager.loadGame(slot);
}
/**
* Save the game to the given slot index, and with the given name
*/
Common::Error HopkinsEngine::saveGameState(int slot, const Common::String &desc) {
- return _saveLoadManager.save(slot, desc);
+ return _saveLoadManager.saveGame(slot, desc);
}
Common::Error HopkinsEngine::run() {