diff options
author | D G Turner | 2011-12-04 14:52:44 +0000 |
---|---|---|
committer | D G Turner | 2011-12-04 14:52:44 +0000 |
commit | 0769059f984058d7bf5f1c77f05bd426844f0048 (patch) | |
tree | 0fe8b8a058cf46e0c9eefa73cee77a1e91402c7a /engines | |
parent | 4d83a53e52be33845ca61fa10258fe75692c59e7 (diff) | |
download | scummvm-rg350-0769059f984058d7bf5f1c77f05bd426844f0048.tar.gz scummvm-rg350-0769059f984058d7bf5f1c77f05bd426844f0048.tar.bz2 scummvm-rg350-0769059f984058d7bf5f1c77f05bd426844f0048.zip |
DREAMWEB: 'titles' ported to C++
Diffstat (limited to 'engines')
-rw-r--r-- | engines/dreamweb/dreamgen.cpp | 10 | ||||
-rw-r--r-- | engines/dreamweb/dreamgen.h | 5 | ||||
-rw-r--r-- | engines/dreamweb/stubs.cpp | 7 |
3 files changed, 8 insertions, 14 deletions
diff --git a/engines/dreamweb/dreamgen.cpp b/engines/dreamweb/dreamgen.cpp index 26142a2590..172e822749 100644 --- a/engines/dreamweb/dreamgen.cpp +++ b/engines/dreamweb/dreamgen.cpp @@ -2315,16 +2315,6 @@ void DreamGenContext::initialMonCols() { showGroup(); } -void DreamGenContext::titles() { - STACK_CHECK; - clearPalette(); - bibleQuote(); - _cmp(data.byte(kQuitrequested), 0); - if (!flags.z()) - return /* (titlesearly) */; - intro(); -} - void DreamGenContext::endGame() { STACK_CHECK; dx = 1146; diff --git a/engines/dreamweb/dreamgen.h b/engines/dreamweb/dreamgen.h index 9dbb041998..a080410e6e 100644 --- a/engines/dreamweb/dreamgen.h +++ b/engines/dreamweb/dreamgen.h @@ -580,7 +580,6 @@ public: void openSarters(); void putUnderCentre(); void checkObjectSize(); - void titles(); void deallocateMem(); void showGroup(); void watchReel(); @@ -601,7 +600,6 @@ public: void introMonks1(); void resetLocation(); void introMonks2(); - void advisor(); void additionalText(); void useElevator5(); void useElevator4(); @@ -685,7 +683,7 @@ public: void lockLightOff(); void wearWatch(); void runIntroSeq(); - void nextColon(); + void advisor(); void attendant(); void nextSymbol(); void monks2text(); @@ -695,6 +693,7 @@ public: void openHotelDoor(); void blank(); void drinker(); + void nextColon(); void placeFreeObject(); void allPalette(); void adjustRight(); diff --git a/engines/dreamweb/stubs.cpp b/engines/dreamweb/stubs.cpp index b50710c10c..939b358404 100644 --- a/engines/dreamweb/stubs.cpp +++ b/engines/dreamweb/stubs.cpp @@ -542,7 +542,12 @@ void DreamGenContext::dreamweb() { if (startNewGame) { // "playGame" - titles(); + // "titles" + clearPalette(); + bibleQuote(); + if (!quitRequested()) // "titlesearly" + intro(); + if (quitRequested()) goto done; |