diff options
author | Paul Gilbert | 2018-11-25 22:25:31 -0800 |
---|---|---|
committer | Paul Gilbert | 2018-12-08 19:05:59 -0800 |
commit | 33a23bca1c0363340d14ed4c84e558e82a9f245e (patch) | |
tree | 7a0bdfbbb546050cdbce67678a940bfb4bb8ba39 /engines/glk/scott | |
parent | 6e6b285e83d44e0b35b1c8df3fd5fe325310810e (diff) | |
download | scummvm-rg350-33a23bca1c0363340d14ed4c84e558e82a9f245e.tar.gz scummvm-rg350-33a23bca1c0363340d14ed4c84e558e82a9f245e.tar.bz2 scummvm-rg350-33a23bca1c0363340d14ed4c84e558e82a9f245e.zip |
GLK: FROTZ: Further reading/writing setup for savegames using Quetzal
Diffstat (limited to 'engines/glk/scott')
-rw-r--r-- | engines/glk/scott/scott.cpp | 2 | ||||
-rw-r--r-- | engines/glk/scott/scott.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/glk/scott/scott.cpp b/engines/glk/scott/scott.cpp index eb8cd404c2..1efc683ab0 100644 --- a/engines/glk/scott/scott.cpp +++ b/engines/glk/scott/scott.cpp @@ -508,7 +508,7 @@ void Scott::lineInput(char *buf, size_t n) { buf[ev.val1] = 0; } -Common::Error Scott::saveGameData(strid_t file) { +Common::Error Scott::saveGameData(strid_t file, const Common::String &desc) { Common::String msg; for (int ct = 0; ct < 16; ct++) { diff --git a/engines/glk/scott/scott.h b/engines/glk/scott/scott.h index ad1313d5d4..b490fd6412 100644 --- a/engines/glk/scott/scott.h +++ b/engines/glk/scott/scott.h @@ -184,7 +184,7 @@ public: /** * Save the game to the passed stream */ - virtual Common::Error saveGameData(strid_t file) override; + virtual Common::Error saveGameData(strid_t file, const Common::String &desc) override; }; } // End of namespace Scott |