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:
Mike Klaas
2026-03-30 07:53:57 -07:00
committed by GitHub
parent 6a0bed4433
commit b14f518714
+5 -5
View File
@@ -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)