aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/frotz/frotz.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/glk/frotz/frotz.h')
-rw-r--r--engines/glk/frotz/frotz.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/glk/frotz/frotz.h b/engines/glk/frotz/frotz.h
index e45abc07a8..00aeb599fb 100644
--- a/engines/glk/frotz/frotz.h
+++ b/engines/glk/frotz/frotz.h
@@ -54,14 +54,14 @@ public:
virtual void runGame(Common::SeekableReadStream *gameFile) override;
/**
- * Load a savegame
+ * Load a savegame from the passed stream
*/
- virtual Common::Error loadGameState(int slot) override;
+ virtual Common::Error loadGameData(strid_t file) override;
/**
- * Save the game
+ * Save the game to the passed stream
*/
- virtual Common::Error saveGameState(int slot, const Common::String &desc) override;
+ virtual Common::Error saveGameData(strid_t file) override;
};
extern Frotz *g_vm;