Skip to content

Commit

Permalink
Fix incorrect chordHopoCancellation value for ini entries
Browse files Browse the repository at this point in the history
  • Loading branch information
sonicfind committed Oct 23, 2024
1 parent 196fae9 commit bd49327
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion YARG.Core/Song/Entries/Ini/SongEntry.UnpackedIni.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public override void Serialize(MemoryStream stream, CategoryCacheWriteNode node)
SustainCutoffThreshold = Settings.SustainCutoffThreshold,
StarPowerNote = Settings.OverdiveMidiNote,
DrumsType = ParseDrumsType(in Parts),
ChordHopoCancellation = _chartFormat == ChartFormat.Chart
ChordHopoCancellation = _chartFormat != ChartFormat.Chart
};

using var stream = new FileStream(_chartFile.FullName, FileMode.Open, FileAccess.Read, FileShare.Read, 1);
Expand Down

0 comments on commit bd49327

Please sign in to comment.