aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2007-06-21 07:34:54 +0000
committerTravis Howell2007-06-21 07:34:54 +0000
commitc42dada4653f860f45e1b46e4f647041e9116af4 (patch)
tree271adb3747a9eb8673be8ecb3cb815d174fe29b8
parentb4041c450f2b4965769fe64e98727e2a6a940744 (diff)
downloadscummvm-rg350-c42dada4653f860f45e1b46e4f647041e9116af4.tar.gz
scummvm-rg350-c42dada4653f860f45e1b46e4f647041e9116af4.tar.bz2
scummvm-rg350-c42dada4653f860f45e1b46e4f647041e9116af4.zip
Revert debug output.
svn-id: r27583
-rw-r--r--engines/agos/vga_ff.cpp10
1 files changed, 2 insertions, 8 deletions
diff --git a/engines/agos/vga_ff.cpp b/engines/agos/vga_ff.cpp
index 4454b54e14..29b05e1e3c 100644
--- a/engines/agos/vga_ff.cpp
+++ b/engines/agos/vga_ff.cpp
@@ -256,17 +256,11 @@ void AGOSEngine::checkScrollX(int16 x, int16 xpos) {
}
void AGOSEngine::checkScrollY(int16 y, int16 ypos) {
- printf("checkScrollY: y %d ypos %d\n", y, ypos);
-
- if (_scrollYMax == 0) {
- printf("No y Max\n");
+ if (_scrollYMax == 0)
return;
- }
- if (getGameType() == GType_FF && getBitFlag(80)) {
- printf("BitFlag 80 set\n");
+ if (getGameType() == GType_FF && getBitFlag(80))
return;
- }
int16 tmp;
if (y >= 0) {