aboutsummaryrefslogtreecommitdiff
path: root/engines/dm/dm.h
diff options
context:
space:
mode:
authorBendegúz Nagy2016-08-18 17:50:56 +0200
committerBendegúz Nagy2016-08-26 23:02:22 +0200
commitbcb067698efe6e18be02a23eb48499ed8e0e714f (patch)
tree6a056d32fecbf7ce1fad0f27f45c1f81e083e295 /engines/dm/dm.h
parent4442b0b302f107013e88120c69d8cf41aaec0ecc (diff)
downloadscummvm-rg350-bcb067698efe6e18be02a23eb48499ed8e0e714f.tar.gz
scummvm-rg350-bcb067698efe6e18be02a23eb48499ed8e0e714f.tar.bz2
scummvm-rg350-bcb067698efe6e18be02a23eb48499ed8e0e714f.zip
DM: Add support for loading from launcher
Diffstat (limited to 'engines/dm/dm.h')
-rw-r--r--engines/dm/dm.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/dm/dm.h b/engines/dm/dm.h
index 9b39f6ee9a..1187db803c 100644
--- a/engines/dm/dm.h
+++ b/engines/dm/dm.h
@@ -212,7 +212,6 @@ class DMEngine : public Engine {
void initArrays();
Common::String getSavefileName(uint16 slot);
void writeSaveGameHeader(Common::OutSaveFile *out, const Common::String &saveName);
- bool readSaveGameHeader(Common::InSaveFile *file, SaveGameHeader *header);
void f439_drawEntrance(); // @ F0439_STARTEND_DrawEntrance
public:
explicit DMEngine(OSystem *syst, const ADGameDescription *gameDesc);
@@ -295,6 +294,8 @@ public:
int16 _g318_waitForInputMaxVerticalBlankCount; // @ G0318_i_WaitForInputMaximumVerticalBlankCount
};
+bool readSaveGameHeader(Common::InSaveFile* in, SaveGameHeader* header);
+
} // End of namespace DM
#endif