mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 07:17:45 -04:00
regression fix for gp2x 8bit fast mode
This commit is contained in:
parent
e1e7d1ed1c
commit
4bb8111a05
2 changed files with 3 additions and 1 deletions
|
@ -141,6 +141,7 @@ vidcpy_m2:
|
|||
movne lr, #64
|
||||
tstne r3, r3
|
||||
addne r0, r0, #32
|
||||
addne r1, r1, #32
|
||||
|
||||
vidCpyM2_loop_out:
|
||||
mov r6, #10
|
||||
|
|
|
@ -61,10 +61,11 @@ void vidcpy_m2(void *dest, void *src, int m32col, int with_32c_border)
|
|||
for (i = 0; i < 224; i++)
|
||||
{
|
||||
ps += 8;
|
||||
ps += 32;
|
||||
pd += 32;
|
||||
for (u = 0; u < 256; u++)
|
||||
*pd++ = *ps++;
|
||||
ps += 64;
|
||||
ps += 32;
|
||||
pd += 32;
|
||||
}
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue