Skip to content

Commit

Permalink
SCUMM HE: Remove not more needed debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Jun 8, 2016
1 parent 5181b50 commit ffdb0d5
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions engines/scumm/he/moonbase/moonbase_fow.cpp
Expand Up @@ -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;
Expand Down

0 comments on commit ffdb0d5

Please sign in to comment.