mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-06 16:51:38 +00:00
ACCESS: replaced magic numbers with contants
they are used later on already to fill the allocated memory
This commit is contained in:
parent
73bdd5d66f
commit
ba04f1e466
@ -81,7 +81,7 @@ void EventsManager::setCursor(CursorType cursorId) {
|
|||||||
|
|
||||||
// Create a surface to build up the cursor on
|
// Create a surface to build up the cursor on
|
||||||
Graphics::Surface cursorSurface;
|
Graphics::Surface cursorSurface;
|
||||||
cursorSurface.create(16, 16, Graphics::PixelFormat::createFormatCLUT8());
|
cursorSurface.create(CURSOR_WIDTH, CURSOR_HEIGHT, Graphics::PixelFormat::createFormatCLUT8());
|
||||||
byte *destP = (byte *)cursorSurface.getPixels();
|
byte *destP = (byte *)cursorSurface.getPixels();
|
||||||
Common::fill(destP, destP + CURSOR_WIDTH * CURSOR_HEIGHT, 0);
|
Common::fill(destP, destP + CURSOR_WIDTH * CURSOR_HEIGHT, 0);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user