UI: Fixed crash when using toggle record video if a video was never recorded before

This commit is contained in:
Sour 2020-06-20 14:01:50 -04:00
parent ecadab92db
commit 67b9ba3290

View file

@ -8,8 +8,8 @@ namespace Mesen.GUI.Config
{
public class MovieRecordInfo
{
public RecordMovieFrom RecordFrom;
public string Author;
public string Description;
public RecordMovieFrom RecordFrom = RecordMovieFrom.CurrentState;
public string Author = "";
public string Description = "";
}
}