Headless: Dispose of inputmanager in a catch-all try

This commit is contained in:
Evan Husted 2025-01-18 10:30:19 -06:00
parent 6a291d4116
commit b08e5db6d8

View File

@ -301,7 +301,10 @@ namespace Ryujinx.Headless
_userChannelPersistence.ShouldRestart = false;
}
try
{
_inputManager.Dispose();
} catch {}
return;