rename config variable to match type name

This commit is contained in:
adelikat 2020-01-25 11:44:58 -06:00
parent 6527b98476
commit 90e1a89516
2 changed files with 2 additions and 2 deletions

View File

@ -268,7 +268,7 @@ namespace BizHawk.Client.Common
public RecentFiles RecentCheats = new RecentFiles(8);
// TAStudio
public TasStateManagerSettings DefaultTasProjSettings = new TasStateManagerSettings();
public TasStateManagerSettings DefaultTasStateManagerSettings = new TasStateManagerSettings();
// Macro Tool
public RecentFiles RecentMacros = new RecentFiles(8);

View File

@ -55,7 +55,7 @@ namespace BizHawk.Client.Common
}
ChangeLog = new TasMovieChangeLog(this);
TasStateManager = new TasStateManager(this, Global.Config.DefaultTasProjSettings);
TasStateManager = new TasStateManager(this, Global.Config.DefaultTasStateManagerSettings);
Session = new TasSession();
Header[HeaderKeys.MOVIEVERSION] = "BizHawk v2.0 Tasproj v1.0";
Markers = new TasMovieMarkerList(this);