Removed one-use MaxHexValueFromMaxDigits function from StringHelpers.cs.

This commit is contained in:
scepheo 2014-05-15 15:12:30 +00:00
parent 4bcf217a99
commit 0add712863
2 changed files with 2 additions and 29 deletions

View File

@ -47,32 +47,5 @@ namespace BizHawk.Client.Common
return 8;
}
public static uint MaxHexValueFromMaxDigits(int i)
{
switch (i)
{
case 0:
return 0;
case 1:
return 0xF;
case 2:
return 0xFF;
case 3:
return 0xFFF;
case 4:
return 0xFFFF;
case 5:
return 0xFFFFF;
case 6:
return 0xFFFFFF;
case 7:
return 0xFFFFFFF;
case 8:
return 0xFFFFFFFF;
}
return int.MaxValue;
}
}
}

View File

@ -42,8 +42,8 @@ namespace BizHawk.Client.EmuHawk
{
return (uint)_maxSize.Value;
}
return IntHelpers.MaxHexValueFromMaxDigits(MaxLength);
return (uint)(((long)1 << (4 * MaxLength)) - 1);
}
public override void ResetText()