Input: move m_is_init to base class

This commit is contained in:
Megamouse 2022-10-21 22:47:25 +02:00
parent ddd261c943
commit e499c3c6e3
7 changed files with 7 additions and 10 deletions

View file

@ -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;
}