Fixed stack overflow crash

This commit is contained in:
Souryo 2017-02-18 13:11:52 -05:00
parent 37bbb5ea7a
commit 0a6a21e443

View file

@ -119,7 +119,8 @@ namespace Mesen.GUI
} catch(IOException) {
//Pipe was broken
} finally {
ListenForArguments();
Thread.Sleep(10000);
Task.Run(() => this.ListenForArguments());
}
}
}