aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/scott
diff options
context:
space:
mode:
authorPaul Gilbert2018-11-25 22:25:31 -0800
committerPaul Gilbert2018-12-08 19:05:59 -0800
commit33a23bca1c0363340d14ed4c84e558e82a9f245e (patch)
tree7a0bdfbbb546050cdbce67678a940bfb4bb8ba39 /engines/glk/scott
parent6e6b285e83d44e0b35b1c8df3fd5fe325310810e (diff)
downloadscummvm-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.cpp2
-rw-r--r--engines/glk/scott/scott.h2
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