Ram Search - default to unsigned for N64 and GBA, not float. Float as the default wasn't supposed to make it into a release.
This commit is contained in:
parent
8186e1eddf
commit
ba876d9765
|
@ -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":
|
||||
|
|
Loading…
Reference in New Issue