SCI: Get rid of casts on CursorManager::replaceCursor calls.

This commit is contained in:
Johannes Schickel 2012-06-16 03:19:34 +02:00
parent 60a6ce70c1
commit 7b646e5c62

View File

@ -411,7 +411,7 @@ void GfxCursor::refreshPosition() {
}
}
CursorMan.replaceCursor((const byte *)_cursorSurface, cursorCelInfo->width, cursorCelInfo->height, cursorHotspot.x, cursorHotspot.y, cursorCelInfo->clearKey);
CursorMan.replaceCursor(_cursorSurface, cursorCelInfo->width, cursorCelInfo->height, cursorHotspot.x, cursorHotspot.y, cursorCelInfo->clearKey);
}
}