From: John Tsiombikas Date: Sat, 22 May 2021 01:25:06 +0000 (+0300) Subject: fixed C++ comment in gfx.c X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=retrobench;a=commitdiff_plain;h=91a1b4c826ebe1538c56f0ff85451a4c771a79f0 fixed C++ comment in gfx.c --- 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;