make things work, sorta kinda (I lost track)

This commit is contained in:
Arisotura
2022-01-02 23:46:58 +01:00
parent 18c7629451
commit cdff61c209
12 changed files with 172 additions and 106 deletions

View File

@ -565,7 +565,6 @@ void Reset()
if (ConsoleType == 1)
{
DSi::LoadBIOS();
DSi::LoadNAND();
ARM9ClockShift = 2;
MainRAMMask = 0xFFFFFF;
@ -932,6 +931,11 @@ void EjectCart()
NDSCart::EjectCart();
}
bool CartInserted()
{
return NDSCart::CartInserted;
}
bool LoadGBACart(const u8* romdata, u32 romlen, const u8* savedata, u32 savelen)
{
if (!GBACart::LoadROM(romdata, romlen))