@@ -612,9 +612,9 @@ begin |
| 612 |
HInterval := H div 15; |
612 |
HInterval := H div 15; |
| 613 |
|
613 |
|
| 614 |
With PB.Canvas do begin |
614 |
With PB.Canvas do begin |
| 615 |
Brush.Color := TColor($211807); // Gameboy Black |
615 |
Brush.Color := clGameboyBlack; |
| 616 |
Clear; |
616 |
Clear; |
| 617 |
Pen.Color := TColor($6CC086); // Gameboy Mid Green |
617 |
Pen.Color := clGameboyMidGreen; |
| 618 |
Pen.Width := 3; |
618 |
Pen.Width := 3; |
| 619 |
MoveTo(0, H-V*HInterval); // Start volume |
619 |
MoveTo(0, H-V*HInterval); // Start volume |
| 620 |
|
620 |
|
@@ -656,7 +656,7 @@ begin |
| 656 |
with VisualizerBuffer.Canvas do begin |
656 |
with VisualizerBuffer.Canvas do begin |
| 657 |
MoveTo(0, PB.Height div 2); |
657 |
MoveTo(0, PB.Height div 2); |
| 658 |
|
658 |
|
| 659 |
Brush.Color := TColor($211807); // Gameboy Black |
659 |
Brush.Color := clGameboyBlack; |
| 660 |
Clear; |
660 |
Clear; |
| 661 |
|
661 |
|
| 662 |
Pen.Color := clGray; |
662 |
Pen.Color := clGray; |
@@ -665,7 +665,7 @@ begin |
| 665 |
Pen.Width := 2; |
665 |
Pen.Width := 2; |
| 666 |
|
666 |
|
| 667 |
if not snd[Channel].ChannelOFF then begin |
667 |
if not snd[Channel].ChannelOFF then begin |
| 668 |
Pen.Color := TColor($6CC086); // Gameboy Mid Green |
668 |
Pen.Color := clGameboyMidGreen; |
| 669 |
|
669 |
|
| 670 |
X := 0; |
670 |
X := 0; |
| 671 |
I := 0; |
671 |
I := 0; |
@@ -681,7 +681,7 @@ begin |
| 681 |
end; |
681 |
end; |
| 682 |
end |
682 |
end |
| 683 |
else begin |
683 |
else begin |
| 684 |
Pen.Color := TColor($0C0094); |
684 |
Pen.Color := TColor($0C0094); // what color is this? |
| 685 |
Line(0, 0, PB.Width, PB.Height); |
685 |
Line(0, 0, PB.Width, PB.Height); |
| 686 |
Line(0, PB.Height, PB.Width, 0); |
686 |
Line(0, PB.Height, PB.Width, 0); |
| 687 |
end; |
687 |
end; |