fix FDS and maybe CGB load fail switch, which were broken because i broke them
This commit is contained in:
parent
e865599ef6
commit
728a6cf1e7
|
@ -427,6 +427,11 @@ namespace BizHawk.Client.Common
|
||||||
system = game.System;
|
system = game.System;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// all of the specific exceptions we're trying to catch here aren't expected to have inner exceptions,
|
||||||
|
// so drill down in case we got a TargetInvocationException or something like that
|
||||||
|
while (ex.InnerException != null)
|
||||||
|
ex = ex.InnerException;
|
||||||
|
|
||||||
// Specific hack here, as we get more cores of the same system, this isn't scalable
|
// Specific hack here, as we get more cores of the same system, this isn't scalable
|
||||||
if (ex is UnsupportedMapperException)
|
if (ex is UnsupportedMapperException)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue