mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Wiimote: simplify DoState() parameters
This commit is contained in:
@ -153,11 +153,10 @@ unsigned int GetAttached()
|
||||
// input/output: ptr: [Description Needed]
|
||||
// input: mode [Description needed]
|
||||
//
|
||||
void DoState(u8 **ptr, PointerWrap::Mode mode)
|
||||
void DoState(PointerWrap& p)
|
||||
{
|
||||
// TODO:
|
||||
|
||||
PointerWrap p(ptr, mode);
|
||||
for (unsigned int i=0; i<MAX_BBMOTES; ++i)
|
||||
((WiimoteEmu::Wiimote*)s_config.controllers[i])->DoState(p);
|
||||
}
|
||||
|
@ -42,7 +42,7 @@ void Resume();
|
||||
void Pause();
|
||||
|
||||
unsigned int GetAttached();
|
||||
void DoState(u8 **ptr, PointerWrap::Mode mode);
|
||||
void DoState(PointerWrap& p);
|
||||
void EmuStateChange(EMUSTATE_CHANGE newState);
|
||||
InputConfig* GetConfig();
|
||||
|
||||
|
@ -164,7 +164,7 @@ static std::string DoState(PointerWrap& p)
|
||||
p.DoMarker("video_backend");
|
||||
|
||||
if (SConfig::GetInstance().bWii)
|
||||
Wiimote::DoState(p.GetPPtr(), p.GetMode());
|
||||
Wiimote::DoState(p);
|
||||
p.DoMarker("Wiimote");
|
||||
|
||||
PowerPC::DoState(p);
|
||||
|
Reference in New Issue
Block a user