From ba876d9765db6ad8408645a76267ca757b682865 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 16 Nov 2013 04:29:43 +0000 Subject: [PATCH] Ram Search - default to unsigned for N64 and GBA, not float. Float as the default wasn't supposed to make it into a release. --- BizHawk.Client.Common/tools/RamSearchEngine.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Client.Common/tools/RamSearchEngine.cs b/BizHawk.Client.Common/tools/RamSearchEngine.cs index 5535b76142..a109c9d076 100644 --- a/BizHawk.Client.Common/tools/RamSearchEngine.cs +++ b/BizHawk.Client.Common/tools/RamSearchEngine.cs @@ -983,13 +983,13 @@ namespace BizHawk.Client.Common case "N64": Mode = SearchMode.Fast; Size = Watch.WatchSize.DWord; - Type = Watch.DisplayType.Float; + Type = Watch.DisplayType.Unsigned; BigEndian = true; break; case "GBA": Mode = SearchMode.Detailed; Size = Watch.WatchSize.DWord; - Type = Watch.DisplayType.Float; + Type = Watch.DisplayType.Unsigned; BigEndian = false; break; case "GEN":