Skip to content

Commit d98c3c2

Browse files
committed
reapply intervening changes to MovieZone.cs
1 parent 974dbc7 commit d98c3c2

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/BizHawk.Client.Common/tools/TAStudio/MovieZone.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,12 +159,12 @@ private void PlaceMacroInternal(IMovie movie, int start)
159159
public void Save(string fileName)
160160
{
161161
// Save the controller definition/LogKey
162-
// Save the controller name and player count. (Only for the user.)
162+
// Save the controller name and controller groups count. (Only for the user)
163163
// Save whether or not the macro should use overlay input, and/or replace
164164
string[] header = new string[4];
165165
header[0] = InputKey;
166-
header[1] = _emulator.ControllerDefinition.Name;
167-
header[2] = _emulator.ControllerDefinition.PlayerCount.ToString();
166+
header[1] = _movieDefinition.Name;
167+
header[2] = _movieDefinition.ControlsOrdered.Count.ToString();
168168
header[3] = $"{Overlay},{Replace}";
169169

170170
File.WriteAllLines(fileName, header);

0 commit comments

Comments
 (0)