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:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user