Headless: Dispose of inputmanager in a catch-all try
parent
6a291d4116
commit
b08e5db6d8
|
|
@ -301,7 +301,10 @@ namespace Ryujinx.Headless
|
|||
_userChannelPersistence.ShouldRestart = false;
|
||||
}
|
||||
|
||||
_inputManager.Dispose();
|
||||
try
|
||||
{
|
||||
_inputManager.Dispose();
|
||||
} catch {}
|
||||
|
||||
return;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue