From 18dfbf4e50668d53c99cd28bed5e4f458f67f820 Mon Sep 17 00:00:00 2001 From: meepingsnesroms Date: Mon, 12 Nov 2018 14:30:57 -0800 Subject: [PATCH] Fix number mistake --- src/emulator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emulator.c b/src/emulator.c index 5b3a7ba..6569085 100644 --- a/src/emulator.c +++ b/src/emulator.c @@ -620,7 +620,7 @@ void emulatorRunFrame(void){ memcpy(palmExtendedFramebuffer + pixCopyY * 320 * 2 + 320, palmExtendedFramebuffer + pixCopyY * 320 * 2, 320 * sizeof(uint16_t)); } - //replace all black pixels in 120x120 with those from 320x320 framebuffer memory, only if black in both buffers will the display color be black, this allows all the 160x160 APIs to work on the larger framebuffer seamlessly + //replace all black pixels in 160x160 with those from 320x320 framebuffer memory, only if black in both buffers will the display color be black, this allows all the 160x160 APIs to work on the larger framebuffer seamlessly //DRIVER NEEDS TO BE WRITTEN STILL //the above was enabled early so using the hires silkscreen and mouse cursor was possible in RetroArch }