mirror of
https://github.com/fallout2-ce/fallout2-ce.git
synced 2026-07-27 16:47:11 -07:00
Comment out hires_stencil debug logs (#339)
These are a bit too much when debugging other features. Could make this controlled by a bool too if people prefer
This commit is contained in:
@@ -216,14 +216,14 @@ void tile_hires_stencil_on_center_tile_or_elevation_change()
|
||||
};
|
||||
|
||||
if (visited_tiles[gElevation][gCenterTile]) {
|
||||
debugPrint("tile_hires_stencil_on_center_tile_or_elevation_change tile was visited gElevation=%i gCenterTile=%i so doing nothing\n",
|
||||
gElevation, gCenterTile);
|
||||
// debugPrint("tile_hires_stencil_on_center_tile_or_elevation_change tile was visited gElevation=%i gCenterTile=%i so doing nothing\n",
|
||||
// gElevation, gCenterTile);
|
||||
|
||||
return;
|
||||
};
|
||||
|
||||
debugPrint("tile_hires_stencil_on_center_tile_or_elevation_change non-visited tile gElevation=%i gCenterTile=%i\n",
|
||||
gElevation, gCenterTile);
|
||||
// debugPrint("tile_hires_stencil_on_center_tile_or_elevation_change non-visited tile gElevation=%i gCenterTile=%i\n",
|
||||
// gElevation, gCenterTile);
|
||||
|
||||
clean_cache_for_elevation(gElevation);
|
||||
|
||||
@@ -320,7 +320,7 @@ void tile_hires_stencil_on_center_tile_or_elevation_change()
|
||||
MarkOnlyPart::DOWN });
|
||||
}
|
||||
|
||||
debugPrint("tile_hires_stencil_on_center_tile_or_elevation_change visited_tiles_count=%i\n", visited_tiles_count);
|
||||
// debugPrint("tile_hires_stencil_on_center_tile_or_elevation_change visited_tiles_count=%i\n", visited_tiles_count);
|
||||
}
|
||||
|
||||
void tile_hires_stencil_draw(Rect* rect, unsigned char* buffer, int windowWidth, int windowHeight)
|
||||
|
||||
Reference in New Issue
Block a user