ZVISION: Actually use the converted color instead of the old one

This commit is contained in:
RichieSams 2013-09-06 22:49:03 -05:00
parent 558a987143
commit db83d1b5e5

View File

@ -98,7 +98,7 @@ void RenderManager::clearWorkingWindowTo555Color(uint16 color) {
uint16 *bufferPtr = (uint16 *)_workingWindowBuffer.getPixels();
for (uint32 i = 0; i < workingWindowSize; i++) {
bufferPtr[i] = color;
bufferPtr[i] = colorIn565;
}
}