projects
/
retrobench
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8f94038
)
fixed C++ comment in gfx.c
author
John Tsiombikas
<nuclear@member.fsf.org>
Sat, 22 May 2021 01:25:06 +0000
(
04:25
+0300)
committer
John Tsiombikas
<nuclear@member.fsf.org>
Sat, 22 May 2021 01:25:06 +0000
(
04:25
+0300)
src/dos/gfx.c
patch
|
blob
|
history
diff --git
a/src/dos/gfx.c
b/src/dos/gfx.c
index
939a679
..
004c492
100644
(file)
--- 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;