mirror of
https://github.com/libretro/FBNeo.git
synced 2024-11-23 17:09:43 +00:00
dinopicLayerWrite() endian fix [crystalct]
This commit is contained in:
parent
b9ecd580fb
commit
4e379f6378
@ -17343,7 +17343,7 @@ void __fastcall DinopicScrollWrite(UINT32 a, UINT16 d)
|
||||
void __fastcall DinopicLayerWrite(UINT32 a, UINT16 d)
|
||||
{
|
||||
if (a == 0x800222) {
|
||||
*((UINT16*)(CpsReg + 0x06)) = d;
|
||||
*((UINT16*)(CpsReg + 0x06)) = BURN_ENDIAN_SWAP_INT16(d);;
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user