ACCESS: replaced magic numbers with contants

they are used later on already to fill the allocated memory
This commit is contained in:
Martin Gerhardy 2020-10-17 13:04:04 +02:00 committed by Paul Gilbert
parent 73bdd5d66f
commit ba04f1e466

@ -81,7 +81,7 @@ void EventsManager::setCursor(CursorType cursorId) {
// Create a surface to build up the cursor on
Graphics::Surface cursorSurface;
cursorSurface.create(16, 16, Graphics::PixelFormat::createFormatCLUT8());
cursorSurface.create(CURSOR_WIDTH, CURSOR_HEIGHT, Graphics::PixelFormat::createFormatCLUT8());
byte *destP = (byte *)cursorSurface.getPixels();
Common::fill(destP, destP + CURSOR_WIDTH * CURSOR_HEIGHT, 0);