Ist auch der richtige Pinsel zugewiesen?
Background.Canvas.Brush.Style := bsSolid;
Ansonsten ist hier noch was zum versuchen:
Delphi-Quellcode:
Background.Canvas.Brush.Style := bsSolid;
Background.Canvas.Brush.Color :=
RGB(0, 0, 0);
Background.Canvas.FillRect(Game.ClientRect);
{ oder }
{Background.Canvas.Brush.Style := bsSolid;}
Background.Canvas.Pen.Color :=
RGB(0, 0, 0);
Background.Canvas.Brush.Color := Canvas.Pen.Color;
Background.Canvas.Rectangle(0, 0, Game.Width, Game.Height);