lua - fix NRE when when movie.mode() is called with no movie active, fixes #2262
This commit is contained in:
parent
96bee60cda
commit
e525d512f8
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue