Flip expected/actual in PlayMovie

This commit is contained in:
YoshiRulz 2021-05-17 10:39:43 +10:00
parent bc21f296a0
commit 1aa9481a2a
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 6 additions and 6 deletions

View File

@ -392,24 +392,24 @@ namespace BizHawk.Client.EmuHawk
switch (kvp.Key)
{
case HeaderKeys.Sha1:
if (kvp.Value != _game.Hash)
if (_game.Hash != kvp.Value)
{
item.BackColor = Color.Pink;
item.ToolTipText = $"Expected: {_game.Hash}\n Actual: {kvp.Value}";
item.ToolTipText = $"Expected: {kvp.Value}\nActual: {_game.Hash}";
}
break;
case HeaderKeys.EmulatorVersion:
if (kvp.Value != VersionInfo.GetEmuVersion())
if (VersionInfo.GetEmuVersion() != kvp.Value)
{
item.BackColor = Color.Yellow;
item.ToolTipText = $"Expected: {VersionInfo.GetEmuVersion()}\n Actual: {kvp.Value}";
item.ToolTipText = $"Expected: {kvp.Value}\nActual: {VersionInfo.GetEmuVersion()}";
}
break;
case HeaderKeys.Platform:
if (kvp.Value != _emulator.SystemId)
if (_emulator.SystemId != kvp.Value)
{
item.BackColor = Color.Pink;
item.ToolTipText = $"Expected: {_emulator.SystemId}\n Actual: {kvp.Value}";
item.ToolTipText = $"Expected: {kvp.Value}\n Actual: {_emulator.SystemId}";
}
break;
}