tastudio greenzone settings - don't check for if 64 bit process

This commit is contained in:
adelikat 2017-07-09 09:39:36 -05:00
parent 9a5ae16c7d
commit f53624f336
1 changed files with 1 additions and 8 deletions

View File

@ -23,14 +23,7 @@ namespace BizHawk.Client.EmuHawk
{
_stateSizeMb = Statable.SaveStateBinary().Length / (decimal)1024 / (decimal)1024;
if (Environment.Is64BitProcess) // ?
{
MemCapacityNumeric.Maximum = 1024 * 8;
}
else
{
MemCapacityNumeric.Maximum = 1024;
}
MemCapacityNumeric.Maximum = 1024 * 8;
MemCapacityNumeric.Value = _settings.Capacitymb < MemCapacityNumeric.Maximum ?
_settings.Capacitymb : MemCapacityNumeric.Maximum;