mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 22:11:26 +12:00
overlays: do not open home menu in VSH
This commit is contained in:
parent
44771150b7
commit
d3183708e8
7 changed files with 16 additions and 8 deletions
|
@ -242,6 +242,8 @@ void pad_thread::operator()()
|
|||
{
|
||||
Init();
|
||||
|
||||
const bool is_vsh = Emu.IsVsh();
|
||||
|
||||
pad::g_reset = false;
|
||||
pad::g_started = true;
|
||||
|
||||
|
@ -401,7 +403,7 @@ void pad_thread::operator()()
|
|||
}
|
||||
|
||||
// Handle home menu if requested
|
||||
if (!m_home_menu_open && Emu.IsRunning())
|
||||
if (!is_vsh && !m_home_menu_open && Emu.IsRunning())
|
||||
{
|
||||
for (usz i = 0; i < m_pads.size(); i++)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue