aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm
diff options
context:
space:
mode:
authorEugene Sandulenko2016-06-08 06:09:29 +0200
committerEugene Sandulenko2016-06-08 06:10:19 +0200
commitffdb0d56651dac4dfcac19b408c58f72685cd301 (patch)
treec3e6967ea704a59e4049404a972f6b58676f5107 /engines/scumm
parent5181b50ceaf2e3aa16ed47a316da71dfca7e25d3 (diff)
downloadscummvm-rg350-ffdb0d56651dac4dfcac19b408c58f72685cd301.tar.gz
scummvm-rg350-ffdb0d56651dac4dfcac19b408c58f72685cd301.tar.bz2
scummvm-rg350-ffdb0d56651dac4dfcac19b408c58f72685cd301.zip
SCUMM HE: Remove not more needed debug output
Diffstat (limited to 'engines/scumm')
-rw-r--r--engines/scumm/he/moonbase/moonbase_fow.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/engines/scumm/he/moonbase/moonbase_fow.cpp b/engines/scumm/he/moonbase/moonbase_fow.cpp
index 77f40a7d97..0837d9eea3 100644
--- a/engines/scumm/he/moonbase/moonbase_fow.cpp
+++ b/engines/scumm/he/moonbase/moonbase_fow.cpp
@@ -175,19 +175,6 @@ void Moonbase::setFOWInfo(int fowInfoArray, int downDim, int acrossDim, int view
if (!_fowImage)
return;
- for (int y = 0; y < downDim; y++) {
- Common::String s;
-
- for (int x = 0; x < acrossDim; x++)
- if (readFOWVisibilityArray(fowInfoArray, x, y))
- s += "@";
- else
- s+= " ";
-
- debug(5, "%s", s.c_str());
- }
- debug(5, "");
-
memset(_fowRenderTable, 0, sizeof(_fowRenderTable));
_fowDrawX = clipX1;