Skip to content
Permalink
Browse files
Merge pull request #8742 from Techjar/netplay-usbhost-hang
IOS/USBHost: Skip starting threads when determinism is enabled
  • Loading branch information
JMC47 committed Apr 13, 2020
2 parents 013e052 + bb99062 commit 39f107f
Showing 1 changed file with 1 addition and 1 deletion.
@@ -35,7 +35,7 @@ USBHost::~USBHost() = default;

IPCCommandResult USBHost::Open(const OpenRequest& request)
{
if (!m_has_initialised)
if (!m_has_initialised && !Core::WantsDeterminism())
{
StartThreads();
// Force a device scan to complete, because some games (including Your Shape) only care

0 comments on commit 39f107f

Please sign in to comment.