1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-17 03:53:07 +01:00

Increase the grid size for OpenGL, it's faster this way

This commit is contained in:
ζeh Matt
2025-04-24 18:32:37 +03:00
parent eb6b554d77
commit 4a413ff8af

View File

@@ -275,8 +275,8 @@ public:
void ConfigureDirtyGrid()
{
const auto blockWidth = 1u << 7;
const auto blockHeight = 1u << 5;
const auto blockWidth = 1u << 8;
const auto blockHeight = 1u << 8;
_invalidationGrid.reset(_width, _height, blockWidth, blockHeight);
}