fix NRE fix fail

This commit is contained in:
adelikat 2020-06-19 10:18:28 -05:00
parent 91c33a49c0
commit 75bd2f8063
1 changed files with 1 additions and 1 deletions

View File

@ -311,7 +311,7 @@ namespace BizHawk.Client.EmuHawk
if (UseDeltaCompression.Checked || _stateSize == 0)
{
if (_mainForm?.Rewinder.Count > 0)
if (_mainForm.Rewinder?.Count > 0)
{
avgStateSize = _mainForm.Rewinder.Size / _mainForm.Rewinder.Count;
}