Ram Watch/Search - fix bug where signed and unsigned are saved backwards

This commit is contained in:
adelikat 2014-01-21 00:21:19 +00:00
parent 038e5a9525
commit 74b88584be
1 changed files with 2 additions and 2 deletions

View File

@ -114,9 +114,9 @@ namespace BizHawk.Client.Common
case DisplayType.Separator:
return '_';
case DisplayType.Unsigned:
return 's';
case DisplayType.Signed:
return 'u';
case DisplayType.Signed:
return 's';
case DisplayType.Hex:
return 'h';
case DisplayType.Binary: