N64 Video Plugin config - don't crash if user opens it before ever opening a n64 game
This commit is contained in:
parent
bf2ba0841a
commit
438daacb2c
|
@ -29,7 +29,8 @@ namespace BizHawk.Client.EmuHawk
|
|||
}
|
||||
else
|
||||
{
|
||||
return (N64SyncSettings)Global.Config.GetCoreSyncSettings<N64>();
|
||||
return (N64SyncSettings)Global.Config.GetCoreSyncSettings<N64>()
|
||||
?? new N64SyncSettings();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue