N64 Video Plugin config - don't crash if user opens it before ever opening a n64 game

This commit is contained in:
adelikat 2014-05-14 22:17:50 +00:00
parent bf2ba0841a
commit 438daacb2c
1 changed files with 2 additions and 1 deletions

View File

@ -29,7 +29,8 @@ namespace BizHawk.Client.EmuHawk
}
else
{
return (N64SyncSettings)Global.Config.GetCoreSyncSettings<N64>();
return (N64SyncSettings)Global.Config.GetCoreSyncSettings<N64>()
?? new N64SyncSettings();
}
}