Fix TAStudio branch load not cloning markers

-closes #3899
This commit is contained in:
Morilli 2024-06-24 11:59:38 +02:00
parent f468d4ad01
commit 1c3f7204bd
1 changed files with 1 additions and 1 deletions

View File

@ -312,7 +312,7 @@ namespace BizHawk.Client.Common
if (BindMarkersToInput) // pretty critical not to erase them
{
Markers = branch.Markers;
Markers = branch.Markers.DeepClone();
}
Changes = true;