From 9c05c5442464493afa865f70a511589ed9e73617 Mon Sep 17 00:00:00 2001 From: tbgitoo Date: Tue, 5 Oct 2021 20:12:10 +0200 Subject: [PATCH] Debug UBeatNote.pas --- src/beatNote/UBeatNote.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/beatNote/UBeatNote.pas b/src/beatNote/UBeatNote.pas index 267052a06..9bf2b4a77 100644 --- a/src/beatNote/UBeatNote.pas +++ b/src/beatNote/UBeatNote.pas @@ -597,7 +597,7 @@ procedure SingDrawLineBeats(Left, Top, Right: real; Track, PlayerNumber: integer with Notes[Count] do begin - if NoteType = ntRap then + if (NoteType = ntRap) and CurrentSong.RapBeat then begin glColor4f(1, 1, 1, 1); @@ -680,7 +680,7 @@ procedure SingDrawPlayerBGLineBeats(Left, Top, Right: real; Track, PlayerIndex: begin with Notes[Count] do begin - if NoteType = ntRap then + if (NoteType = ntRap) and CurrentSong.RapBeat then begin W := NotesW[PlayerIndex] * 3 + 1.5; H := NotesH[PlayerIndex] * 1.5 + 3.5;