Add names to bool argument in `TAStudio.StartNewMovieWrapper` calls

fixes b6a0688be
This commit is contained in:
YoshiRulz 2024-08-22 22:44:14 +10:00
parent 325880be18
commit ba4c406a36
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
2 changed files with 4 additions and 4 deletions

View File

@ -107,7 +107,7 @@
{
if (!AskSaveChanges()) return false;
WantsToControlStopMovie = false;
var success = StartNewMovieWrapper(CurrentTasMovie, false);
var success = StartNewMovieWrapper(CurrentTasMovie, isNew: false);
WantsToControlStopMovie = true;
RefreshDialog();
return success;

View File

@ -250,7 +250,7 @@ namespace BizHawk.Client.EmuHawk
}
ConvertCurrentMovieToTasproj();
StartNewMovieWrapper(CurrentTasMovie, false);
_ = StartNewMovieWrapper(CurrentTasMovie, isNew: false);
SetUpColumns();
}
@ -527,7 +527,7 @@ namespace BizHawk.Client.EmuHawk
tasMovie.BindMarkersToInput = Settings.BindMarkersToInput;
tasMovie.GreenzoneInvalidated = GreenzoneInvalidated;
if (!StartNewMovieWrapper(tasMovie, false))
if (!StartNewMovieWrapper(tasMovie, isNew: false))
{
return false;
}
@ -593,7 +593,7 @@ namespace BizHawk.Client.EmuHawk
Config.DefaultAuthor);
tasMovie.ClearChanges();
StartNewMovieWrapper(tasMovie, true);
_ = StartNewMovieWrapper(tasMovie, isNew: true);
// clear all selections
TasView.DeselectAll();