File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -278,7 +278,7 @@ void DSi::DoSavestateExtra(Savestate* file)
278278 }
279279 else
280280 {
281- Set_SCFG_Clock9 (SCFG_Clock9);
281+ SetScfgClock9 (SCFG_Clock9);
282282 // SetScfgMC(SCFG_MC, 0xFFFF);
283283
284284 MBK[0 ][8 ] = 0 ;
@@ -503,7 +503,7 @@ void DSi::SetupDirectBoot()
503503 NDS::MapSharedWRAM (3 );
504504
505505 tsc->SetMode (0x00 );
506- Set_SCFG_Clock9 (0x0000 );
506+ SetScfgClock9 (0x0000 );
507507
508508 SCFG_EXT[0 ] &= ~0xC000 ;
509509 ApplyNewRAMSize (0 );
@@ -1386,7 +1386,7 @@ void DSi::CheckDSiLoaderHack()
13861386}
13871387
13881388
1389- void DSi::Set_SCFG_Clock9 (u16 val)
1389+ void DSi::SetScfgClock9 (u16 val)
13901390{
13911391 ARM9Timestamp >>= ARM9ClockShift;
13921392 ARM9Target >>= ARM9ClockShift;
@@ -2704,7 +2704,7 @@ void DSi::ARM9IOWrite16(u32 addr, u16 val)
27042704 case 0x04004004 :
27052705 if (!(SCFG_EXT[0 ] & (1 << 31 ))) /* no access to SCFG Registers if disabled*/
27062706 return ;
2707- Set_SCFG_Clock9 (val);
2707+ SetScfgClock9 (val);
27082708 return ;
27092709
27102710 case 0x04004006 :
@@ -2803,7 +2803,7 @@ void DSi::ARM9IOWrite32(u32 addr, u32 val)
28032803 case 0x04004004 :
28042804 if (!(SCFG_EXT[0 ] & (1 << 31 ))) /* no access to SCFG Registers if disabled*/
28052805 return ;
2806- Set_SCFG_Clock9 (val & 0xFFFF );
2806+ SetScfgClock9 (val & 0xFFFF );
28072807 SCFG_RST = val >> 16 ;
28082808 DSP.SetRstLine ((val >> 16 ) & 1 );
28092809 break ;
Original file line number Diff line number Diff line change @@ -194,7 +194,7 @@ class DSi final : public NDS
194194private:
195195 bool FullBIOSBoot;
196196
197- void Set_SCFG_Clock9 (u16 val);
197+ void SetScfgClock9 (u16 val);
198198 void SetScfgMC (u16 val, u16 mask);
199199
200200 void CartPowerOffEvent (u32 param);
You can’t perform that action at this time.
0 commit comments