diff options
author | Willem Jan Palenstijn | 2011-12-03 15:18:45 +0100 |
---|---|---|
committer | Willem Jan Palenstijn | 2011-12-03 15:19:51 +0100 |
commit | fba69d5839c3f9ecf1241d90c833106059f7c876 (patch) | |
tree | 58622ca30939359fd285dba3fa994beb9d782ab6 /engines/dreamweb/stubs.h | |
parent | ebeab9f4425448446af771943c94c24a7c6cf42d (diff) | |
download | scummvm-rg350-fba69d5839c3f9ecf1241d90c833106059f7c876.tar.gz scummvm-rg350-fba69d5839c3f9ecf1241d90c833106059f7c876.tar.bz2 scummvm-rg350-fba69d5839c3f9ecf1241d90c833106059f7c876.zip |
DREAMWEB: Convert 'scanForNames'
Diffstat (limited to 'engines/dreamweb/stubs.h')
-rw-r--r-- | engines/dreamweb/stubs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/dreamweb/stubs.h b/engines/dreamweb/stubs.h index ea990d69a7..c8532f82d4 100644 --- a/engines/dreamweb/stubs.h +++ b/engines/dreamweb/stubs.h @@ -350,7 +350,7 @@ void loadPosition(unsigned int slot); void savePosition(unsigned int slot, const uint8 *descbuf); void openForSave(unsigned int slot); - void openForLoad(unsigned int slot); + bool openForLoad(unsigned int slot); uint16 allocateAndLoad(unsigned int size); void clearAndLoad(uint16 seg, uint8 c, unsigned int size, unsigned int maxSize); void loadRoomData(const Room &room, bool skipDat); @@ -403,5 +403,5 @@ bool isItRight(uint8 digit0, uint8 digit1, uint8 digit2, uint8 digit3); void enterCode(uint8 digit0, uint8 digit1, uint8 digit2, uint8 digit3); void enterCode(); - void scanForNames(); + unsigned int scanForNames(); |