UI: Don't allow mouse capture if no game is running

This commit is contained in:
Sour 2017-12-28 17:13:59 -05:00
parent 5fdc2f86a4
commit a355313965

View File

@ -124,6 +124,10 @@ namespace Mesen.GUI
{
get
{
if(!InteropEmu.IsRunning()) {
return false;
}
if(InteropEmu.IsPaused()) {
return false;
}