Rewind config - fix NRE when turning off rewind then going back to the config dialog

This commit is contained in:
adelikat 2020-06-19 10:01:01 -05:00
parent 23f8c2bbe6
commit 91c33a49c0
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;
}