From 91a1b4c826ebe1538c56f0ff85451a4c771a79f0 Mon Sep 17 00:00:00 2001 From: John Tsiombikas Date: Sat, 22 May 2021 04:25:06 +0300 Subject: [PATCH] fixed C++ comment in gfx.c --- src/dos/gfx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dos/gfx.c b/src/dos/gfx.c index 939a679..004c492 100644 --- a/src/dos/gfx.c +++ b/src/dos/gfx.c @@ -308,7 +308,7 @@ static void blit_frame_banked(void *pixels, int vsync) pending = pgsize; while(pending > 0) { sz = pending > 65536 ? 65536 : pending; - //memcpy64((void*)0xa0000, pptr, sz >> 3); + /*memcpy64((void*)0xa0000, pptr, sz >> 3);*/ memcpy((void*)0xa0000, pptr, sz); pptr += sz; pending -= sz; -- 1.7.10.4