1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-20 05:23:04 +01:00

Cleanup in SoftwareDrawingEngine::DisplayViaTexture

This commit is contained in:
Michał Janiszewski
2016-09-09 21:00:06 +02:00
committed by Ted John
parent d00aa2c7bb
commit 2759772fca

View File

@@ -691,7 +691,7 @@ private:
uint32 * dst = (uint32 *)pixels;
for (int i = _width * _height; i > 0; i--)
{
*dst++ = *(uint32 *)(&_paletteHWMapped[*src++]);
*dst++ = _paletteHWMapped[*src++];
}
}
else