input: allow running pad thread without emulation

This commit is contained in:
Megamouse 2024-07-06 17:44:47 +02:00
parent 0db7ab64ee
commit 1a61a7a39f
2 changed files with 17 additions and 9 deletions

View file

@ -363,7 +363,10 @@ void pad_thread::operator()()
}
}
update_pad_states();
if (Emu.IsRunning())
{
update_pad_states();
}
m_info.now_connect = connected_devices + num_ldd_pad;