diff options
author | RichieSams | 2013-09-06 22:49:03 -0500 |
---|---|---|
committer | RichieSams | 2013-09-06 22:50:44 -0500 |
commit | db83d1b5e58e461051ec3d74efa89f332ddae1f9 (patch) | |
tree | 637c67d30f591d6e766a91b9b81f9103302e04f4 /engines | |
parent | 558a987143a23826c25779f2a8c139130bf341c0 (diff) | |
download | scummvm-rg350-db83d1b5e58e461051ec3d74efa89f332ddae1f9.tar.gz scummvm-rg350-db83d1b5e58e461051ec3d74efa89f332ddae1f9.tar.bz2 scummvm-rg350-db83d1b5e58e461051ec3d74efa89f332ddae1f9.zip |
ZVISION: Actually use the converted color instead of the old one
Diffstat (limited to 'engines')
-rw-r--r-- | engines/zvision/render_manager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/zvision/render_manager.cpp b/engines/zvision/render_manager.cpp index 6c0e8d24f6..b10a35d531 100644 --- a/engines/zvision/render_manager.cpp +++ b/engines/zvision/render_manager.cpp @@ -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; } } |