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
1 changed files with 1 additions and 1 deletions

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