Fix an error message from Cheats displaying an address in decimal
This commit is contained in:
parent
4bf29a6b00
commit
cf90a96af0
|
@ -342,7 +342,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
comparisonType);
|
comparisonType);
|
||||||
}
|
}
|
||||||
|
|
||||||
MessageBox.Show($"{address} is not a valid address for the domain {domain.Name}", "Index out of range", MessageBoxButtons.OK, MessageBoxIcon.Warning);
|
MessageBox.Show($"0x{address:X} is not a valid address for the domain {domain.Name}", "Index out of range", MessageBoxButtons.OK, MessageBoxIcon.Warning);
|
||||||
return Cheat.Separator;
|
return Cheat.Separator;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue