From b05a16a0ad0dcc2881aeda81e0d1a84a752eccab Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sat, 17 Nov 2018 16:52:47 -0800 Subject: GLK: Centralizing more of the savegame code in GlkEngine --- engines/glk/frotz/frotz.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'engines/glk/frotz/frotz.h') 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; -- cgit v1.2.3