don't give the same name to each track when stating

fixes 00e2fea901
This commit is contained in:
CasualPokePlayer 2023-04-02 02:12:25 -07:00
parent 00e2fea901
commit 6f7f94a06e
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Media
for (var i = 0; i < _tracks.Length; i++)
{
ser.SyncDelta("MediaState", _originalMedia[i], _tracks[i]);
ser.SyncDelta($"MediaState{i}", _originalMedia[i], _tracks[i]);
}
}
}