mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-01-27 11:43:05 -03:00
Fixed a bug where the emulator would still terminate the game when pressing a hotkey (unnecessary check removed)
This commit is contained in:
parent
b6667a8352
commit
c20452be61
1 changed files with 0 additions and 12 deletions
|
@ -1210,17 +1210,6 @@ namespace Ryujinx.Ava
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (NpadManager.Update(ConfigurationState.Instance.Graphics.AspectRatio.Value.ToFloat()))
|
|
||||||
{
|
|
||||||
if (ConfigurationState.Instance.Hid.specialExitEmulator.Value == 1)
|
|
||||||
{
|
|
||||||
SpecialExit = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
_isActive = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (NpadManager.Update(ConfigurationState.Instance.Graphics.AspectRatio.Value.ToFloat()))
|
if (NpadManager.Update(ConfigurationState.Instance.Graphics.AspectRatio.Value.ToFloat()))
|
||||||
{
|
{
|
||||||
if (ConfigurationState.Instance.Hid.specialExitEmulator.Value == 1)
|
if (ConfigurationState.Instance.Hid.specialExitEmulator.Value == 1)
|
||||||
|
@ -1229,7 +1218,6 @@ namespace Ryujinx.Ava
|
||||||
}
|
}
|
||||||
if (ConfigurationState.Instance.Hid.specialExitEmulator.Value > 0)
|
if (ConfigurationState.Instance.Hid.specialExitEmulator.Value > 0)
|
||||||
{
|
{
|
||||||
|
|
||||||
_isActive = false; //close game
|
_isActive = false; //close game
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue