in Movie finished mode, save slots should still be bound to the movie (if the bind option is selected of course)

This commit is contained in:
andres.delikat 2011-07-06 22:37:41 +00:00
parent 0b09825218
commit a0dddc1e5a
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ namespace BizHawk.MultiClient
get get
{ {
string Bind = ""; string Bind = "";
if (Global.Config.BindSavestatesToMovies && Global.MainForm.UserMovie.GetMovieMode() != MOVIEMODE.FINISHED && Global.MainForm.UserMovie.GetMovieMode() != MOVIEMODE.INACTIVE) //TODO: what about movie finished? if (Global.Config.BindSavestatesToMovies && Global.MainForm.UserMovie.GetMovieMode() != MOVIEMODE.INACTIVE)
Bind += " - " + Path.GetFileNameWithoutExtension(Global.MainForm.UserMovie.GetFilePath()); Bind += " - " + Path.GetFileNameWithoutExtension(Global.MainForm.UserMovie.GetFilePath());
switch (System) switch (System)
{ {