diff options
author | Bertrand Augereau | 2011-09-04 13:20:02 +0200 |
---|---|---|
committer | Bertrand Augereau | 2011-09-04 13:38:45 +0200 |
commit | 27bc4f3f08680eff0423c74af8e98fd5b393bf17 (patch) | |
tree | a3854f971885985719255494b0d2aa55eb100e9a /engines/dreamweb/stubs.cpp | |
parent | 052177d136c46f2c6d751d6d51df687d7201c6c3 (diff) | |
download | scummvm-rg350-27bc4f3f08680eff0423c74af8e98fd5b393bf17.tar.gz scummvm-rg350-27bc4f3f08680eff0423c74af8e98fd5b393bf17.tar.bz2 scummvm-rg350-27bc4f3f08680eff0423c74af8e98fd5b393bf17.zip |
DREAWMEB: 'showcity' ported to C++
Diffstat (limited to 'engines/dreamweb/stubs.cpp')
-rw-r--r-- | engines/dreamweb/stubs.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/engines/dreamweb/stubs.cpp b/engines/dreamweb/stubs.cpp index 93688bf643..674bc49de3 100644 --- a/engines/dreamweb/stubs.cpp +++ b/engines/dreamweb/stubs.cpp @@ -1892,5 +1892,12 @@ void DreamGenContext::sortoutmap() { } } +void DreamGenContext::showcity() { + clearwork(); + Frame *tempGraphics = (Frame *)segRef(data.word(kTempgraphics)).ptr(0, 0); + showframe(tempGraphics, 57, 32, 0, 0); + showframe(tempGraphics, 120+57, 32, 1, 0); +} + } /*namespace dreamgen */ |