diff --git a/BizHawk.MultiClient/tools/RamSearch.cs b/BizHawk.MultiClient/tools/RamSearch.cs index 363447340c..8332b34cb2 100644 --- a/BizHawk.MultiClient/tools/RamSearch.cs +++ b/BizHawk.MultiClient/tools/RamSearch.cs @@ -1692,10 +1692,10 @@ namespace BizHawk.MultiClient private int GetNumDigits(Int32 i) { - if (i == 0) return 0; - if (i < 0x10) return 1; - if (i < 0x100) return 2; - if (i < 0x1000) return 3; + //if (i == 0) return 0; + //if (i < 0x10) return 1; + //if (i < 0x100) return 2; + //if (i < 0x1000) return 3; //adelikat: commenting these out because I decided that regardless of domain, 4 digits should be the minimum if (i < 0x10000) return 4; if (i < 0x100000) return 5; if (i < 0x1000000) return 6;