aboutsummaryrefslogtreecommitdiff
path: root/engines/lure/res.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2007-04-14 03:48:24 +0000
committerPaul Gilbert2007-04-14 03:48:24 +0000
commit68225f78967b4328a7c52e3a25bd53320dea4ece (patch)
tree1b7cff4056a9df69101817f188a958f9bf5d4fa5 /engines/lure/res.cpp
parent8be61535336cd123c96c333bf3b9bc0ef6fea47b (diff)
downloadscummvm-rg350-68225f78967b4328a7c52e3a25bd53320dea4ece.tar.gz
scummvm-rg350-68225f78967b4328a7c52e3a25bd53320dea4ece.tar.bz2
scummvm-rg350-68225f78967b4328a7c52e3a25bd53320dea4ece.zip
Implemented handling for barmen (rooms 29, 32, and 35)
svn-id: r26464
Diffstat (limited to 'engines/lure/res.cpp')
-rw-r--r--engines/lure/res.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/lure/res.cpp b/engines/lure/res.cpp
index 8f28da86bb..dc36e60f3e 100644
--- a/engines/lure/res.cpp
+++ b/engines/lure/res.cpp
@@ -641,6 +641,7 @@ void Resources::saveToStream(Common::WriteStream *stream)
_activeHotspots.saveToStream(stream);
_fieldList.saveToStream(stream);
_randomActions.saveToStream(stream);
+ _barmanLists.saveToStream(stream);
}
void Resources::loadFromStream(Common::ReadStream *stream) {
@@ -652,6 +653,8 @@ void Resources::loadFromStream(Common::ReadStream *stream) {
_fieldList.loadFromStream(stream);
debugC(ERROR_DETAILED, kLureDebugScripts, "Loading random actions");
_randomActions.loadFromStream(stream);
+ debugC(ERROR_DETAILED, kLureDebugScripts, "Loading barman lists");
+ _barmanLists.loadFromStream(stream);
debugC(ERROR_DETAILED, kLureDebugScripts, "Finished loading");
}