diff options
author | Travis Howell | 2006-10-13 13:32:15 +0000 |
---|---|---|
committer | Travis Howell | 2006-10-13 13:32:15 +0000 |
commit | 429cdfb131726036ba45148e120e075425873c40 (patch) | |
tree | bf518375d3a577c72f4c144b4c5df6ef56941baf /engines | |
parent | 802a7cfaccfecd34e29a8d92a45e7974e06118b9 (diff) | |
download | scummvm-rg350-429cdfb131726036ba45148e120e075425873c40.tar.gz scummvm-rg350-429cdfb131726036ba45148e120e075425873c40.tar.bz2 scummvm-rg350-429cdfb131726036ba45148e120e075425873c40.zip |
Ooops, add back lost code
svn-id: r24297
Diffstat (limited to 'engines')
-rw-r--r-- | engines/agos/vga.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/engines/agos/vga.cpp b/engines/agos/vga.cpp index d5f19c4c42..fe2a32aeea 100644 --- a/engines/agos/vga.cpp +++ b/engines/agos/vga.cpp @@ -2359,7 +2359,9 @@ void AGOSEngine::vc52_playSound() { void AGOSEngine::vc53_dissolveIn() { // TODO - debug(0, "vc53_dissolveIn: stub"); + uint num = vcReadNextWord(); + uint speed = vcReadNextWord(); + debug(0, "vc53_dissolveIn: stub (%d, %d)", num, speed); } void AGOSEngine::vc53_panSFX() { @@ -2387,7 +2389,10 @@ void AGOSEngine::vc53_panSFX() { void AGOSEngine::vc54_dissolveOut() { // TODO - debug(0, "vc54_dissolveOut: stub"); + uint num = vcReadNextWord(); + uint color = vcReadNextWord(); + uint speed = vcReadNextWord(); + debug(0, "vc54_dissolveOut: stub (%d, %d, %d)", num, color, speed); } void AGOSEngine::vc55_moveBox() { |