aboutsummaryrefslogtreecommitdiff
path: root/engines/dreamweb/monitor.cpp
diff options
context:
space:
mode:
authorMax Horn2011-12-19 21:41:51 +0100
committerFilippos Karapetis2011-12-23 03:32:50 +0200
commita4ffb8fe54c41c957f506c127c6aa30586769c52 (patch)
tree84b4bd82a271bffcd7e4071baca7a4caad5ba5f9 /engines/dreamweb/monitor.cpp
parentd033566f6dea0330d17f54d2f1539c4587f231d0 (diff)
downloadscummvm-rg350-a4ffb8fe54c41c957f506c127c6aa30586769c52.tar.gz
scummvm-rg350-a4ffb8fe54c41c957f506c127c6aa30586769c52.tar.bz2
scummvm-rg350-a4ffb8fe54c41c957f506c127c6aa30586769c52.zip
DREAMWEB: Convert fadeDownMon, fadeUpMon, initialMonCols to C++
Note that the two fade methods are currently unused; the only calls to them are commented out in the asm version of the code. This change also removes showGroup()
Diffstat (limited to 'engines/dreamweb/monitor.cpp')
-rw-r--r--engines/dreamweb/monitor.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/engines/dreamweb/monitor.cpp b/engines/dreamweb/monitor.cpp
index 26caeb29ec..665265052a 100644
--- a/engines/dreamweb/monitor.cpp
+++ b/engines/dreamweb/monitor.cpp
@@ -63,8 +63,8 @@ void DreamGenContext::useMon() {
printLogo();
workToScreenCPP();
turnOnPower();
- fadeupYellows();
- fadeupMonFirst();
+ fadeUpYellows();
+ fadeUpMonFirst();
data.word(kMonadx) = 76;
data.word(kMonady) = 141;
monMessage(1);
@@ -171,10 +171,12 @@ bool DreamGenContext::execCommand() {
void DreamBase::monitorLogo() {
if (data.byte(kLogonum) != data.byte(kOldlogonum)) {
data.byte(kOldlogonum) = data.byte(kLogonum);
+ //fadeDownMon(); // FIXME: Commented out in ASM
printLogo();
printUnderMon();
workToScreenCPP();
printLogo();
+ //fadeUpMon(); // FIXME: Commented out in ASM
printLogo();
playChannel1(26);
randomAccess(20);