Fix LoL cursor in DOS version.

svn-id: r41963
This commit is contained in:
Johannes Schickel 2009-06-29 20:16:59 +00:00
parent e15502d381
commit a12b4e7002

View File

@ -995,6 +995,9 @@ void Screen_LoL::convertPC98Gfx(uint8 *data, int w, int h, int pitch) {
}
void Screen_LoL::postProcessCursor(uint8 *data, int w, int h, int pitch) {
if (!_use16ColorMode)
return;
while (h--) {
for (int i = 0; i < w; ++i) {
if (*data != _cursorColorKey)