fixed C++ comment in gfx.c
authorJohn Tsiombikas <nuclear@member.fsf.org>
Sat, 22 May 2021 01:25:06 +0000 (04:25 +0300)
committerJohn Tsiombikas <nuclear@member.fsf.org>
Sat, 22 May 2021 01:25:06 +0000 (04:25 +0300)
src/dos/gfx.c

index 939a679..004c492 100644 (file)
@@ -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;