mirror of
https://github.com/FunKey-Project/picodrive-irixxxx.git
synced 2026-04-23 14:09:53 +02:00
regression fix for gp2x 8bit fast mode
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user