lua - fix NRE when when movie.mode() is called with no movie active, fixes #2262

This commit is contained in:
adelikat 2020-08-01 13:24:10 -05:00
parent 96bee60cda
commit e525d512f8
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ namespace BizHawk.Client.EmuHawk
public int Length() => GlobalWin.MovieSession.Movie.FrameCount;
public string Mode() => GlobalWin.MovieSession.Movie.Mode.ToString().ToUpper();
public string Mode() => (GlobalWin.MovieSession.Movie?.Mode ?? MovieMode.Inactive).ToString().ToUpper();
public void SetReadOnly(bool readOnly) => GlobalWin.MovieSession.ReadOnly = readOnly;