From 74b88584be22bd5415eaf8b211962f468069a867 Mon Sep 17 00:00:00 2001 From: adelikat Date: Tue, 21 Jan 2014 00:21:19 +0000 Subject: [PATCH] Ram Watch/Search - fix bug where signed and unsigned are saved backwards --- BizHawk.Client.Common/tools/Watch.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Client.Common/tools/Watch.cs b/BizHawk.Client.Common/tools/Watch.cs index 0ea237dfae..80ff76d088 100644 --- a/BizHawk.Client.Common/tools/Watch.cs +++ b/BizHawk.Client.Common/tools/Watch.cs @@ -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: