mirror of
https://github.com/libretro/FBNeo.git
synced 2025-03-09 04:43:17 +00:00
do a favor for the libretro guys since they help with so much stuff
This commit is contained in:
parent
2522e6bfb7
commit
a8c8bca314
@ -2094,7 +2094,7 @@ INT32 cps3Scan(INT32 nAction, INT32 *pnMin)
|
||||
ba.nLen = 0x0000400 * 2;
|
||||
ba.nAddress = 0;
|
||||
ba.szName = "RAM C000";
|
||||
BurnAcb(&ba);
|
||||
BurnAcb(&ba);
|
||||
|
||||
ba.Data = RamPal;
|
||||
ba.nLen = 0x0040000;
|
||||
@ -2102,11 +2102,22 @@ INT32 cps3Scan(INT32 nAction, INT32 *pnMin)
|
||||
ba.szName = "Palette";
|
||||
BurnAcb(&ba);
|
||||
|
||||
#ifdef __LIBRETRO__
|
||||
// netplay relying on savestates doesn't want those 8mb
|
||||
if (!kNetGame) {
|
||||
ba.Data = RamCRam;
|
||||
ba.nLen = 0x0800000;
|
||||
ba.nAddress = 0;
|
||||
ba.szName = "Sprite ROM";
|
||||
BurnAcb(&ba);
|
||||
}
|
||||
#else
|
||||
ba.Data = RamCRam;
|
||||
ba.nLen = 0x0800000;
|
||||
ba.nAddress = 0;
|
||||
ba.szName = "Sprite ROM";
|
||||
BurnAcb(&ba);
|
||||
#endif
|
||||
|
||||
/* // so huge. need not backup it while NOCD
|
||||
// otherwize, need backup gfx also
|
||||
|
Loading…
x
Reference in New Issue
Block a user