mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-10 00:45:37 +00:00
Input: move m_is_init to base class
This commit is contained in:
parent
ddd261c943
commit
e499c3c6e3
7 changed files with 7 additions and 10 deletions
|
|
@ -70,7 +70,7 @@ void mm_joystick_handler::init_config(cfg_pad* cfg)
|
|||
|
||||
bool mm_joystick_handler::Init()
|
||||
{
|
||||
if (is_init)
|
||||
if (m_is_init)
|
||||
return true;
|
||||
|
||||
m_devices.clear();
|
||||
|
|
@ -94,7 +94,7 @@ bool mm_joystick_handler::Init()
|
|||
m_devices.emplace(i, dev);
|
||||
}
|
||||
|
||||
is_init = true;
|
||||
m_is_init = true;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue