1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-30 18:25:16 +01:00

Increase invalidation grid for software renderers

This commit is contained in:
ζeh Matt
2025-04-25 23:37:27 +03:00
parent 105d0e6c4f
commit 0f2f106173

View File

@@ -337,7 +337,7 @@ void X8DrawingEngine::OnDrawDirtyBlock(int32_t, int32_t, int32_t, int32_t)
void X8DrawingEngine::ConfigureDirtyGrid()
{
const auto blockWidth = 1u << 7;
const auto blockHeight = 1u << 5;
const auto blockHeight = 1u << 7;
_invalidationGrid.reset(_width, _height, blockWidth, blockHeight);
}