Skip to content

Commit

Permalink
Debug UBeatNote.pas
Browse files Browse the repository at this point in the history
  • Loading branch information
sbbmaerklin committed Oct 5, 2021
1 parent 91c4751 commit fcbb1dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/beatNote/UBeatNote.pas
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit fcbb1dc

Please sign in to comment.