snes - when throwing an exception about profile mismatches, to let the user know what profile the state was from, and what the current one is, and as a bonus clue us in faster, when garbage data is coming out of a hosed state

This commit is contained in:
adelikat 2014-07-21 03:05:29 +00:00
parent 91a44a8789
commit 26ef424bdf
1 changed files with 1 additions and 1 deletions

View File

@ -955,7 +955,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES
{
if (profile != SyncSettings.Profile)
{
throw new InvalidOperationException("You've attempted to load a savestate made using a different SNES profile than your current configuration. We COULD automatically switch for you, but we havent done that yet. This error is to make sure you know that this isnt going to work right now.");
throw new InvalidOperationException(string.Format("You've attempted to load a savestate made using a different SNES profile ({0}) than your current configuration ({1}). We COULD automatically switch for you, but we havent done that yet. This error is to make sure you know that this isnt going to work right now.", profile, SyncSettings.Profile));
}
}