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:
adelikat 2013-11-16 04:29:43 +00:00
parent 8186e1eddf
commit ba876d9765
1 changed files with 2 additions and 2 deletions

View File

@ -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":