tastudio: only load branch markers if they are bound to input

This commit is contained in:
feos 2017-01-19 20:49:18 +03:00
parent 06b14d654b
commit b7ed072c4c
1 changed files with 3 additions and 1 deletions

View File

@ -543,7 +543,9 @@ namespace BizHawk.Client.Common
StateManager.SetState(branch.Frame, branch.CoreData);
//ChangeLog = branch.ChangeLog;
Markers = branch.Markers;
if (BindMarkersToInput) // pretty critical not to erase them
Markers = branch.Markers;
Changes = true;
}