Remove no-op in tasmovie max undo steps setting

lol
This commit is contained in:
Morilli 2024-10-10 20:50:38 +02:00
parent c844379bd6
commit 4b60a90c78
1 changed files with 1 additions and 8 deletions

View File

@ -59,14 +59,7 @@ namespace BizHawk.Client.Common
_maxSteps = value;
if (_history.Count > value)
{
if (_history.Count <= value)
{
Clear();
}
else
{
Clear(_history.Count - value);
}
Clear(_history.Count - value);
}
}
}