This commit is contained in:
adelikat 2013-10-21 01:54:52 +00:00
parent bce6ec3dd6
commit 208dbf1942
1 changed files with 3 additions and 3 deletions

View File

@ -21,15 +21,15 @@ namespace BizHawk.MultiClient
public Movie() public Movie()
{ {
string version = GlobalWinF.MainForm != null ? GlobalWinF.MainForm.GetEmuVersion() : MainForm.EMUVERSION;
Header = new MovieHeader(version);
Filename = String.Empty; Filename = String.Empty;
preload_framecount = 0; preload_framecount = 0;
StartsFromSavestate = false; StartsFromSavestate = false;
IsCountingRerecords = true; IsCountingRerecords = true;
Mode = MOVIEMODE.INACTIVE; Mode = MOVIEMODE.INACTIVE;
IsText = true; IsText = true;
string version = GlobalWinF.MainForm != null ? GlobalWinF.MainForm.GetEmuVersion() : MainForm.EMUVERSION;
Header = new MovieHeader(version);
} }
#endregion #endregion