From acf4714da7838afe963be32f33eca132ad9a1e00 Mon Sep 17 00:00:00 2001 From: giersch Date: Wed, 21 Nov 2007 12:06:09 +0000 Subject: [PATCH] . --- chateaux/chateaux.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/chateaux/chateaux.cpp b/chateaux/chateaux.cpp index c5bb60f..b6c26e2 100644 --- a/chateaux/chateaux.cpp +++ b/chateaux/chateaux.cpp @@ -166,7 +166,7 @@ void dessineExplosion(DrawingWindow& w, float rx, float ry) w.drawCircle(x, y, i); w.msleep(20); } - w.setColor("white"); + w.setColor("skyblue"); for (i = 0; i < maxray; i++) { w.drawCircle(x, y, i); w.msleep(10); @@ -201,7 +201,7 @@ void initialise(DrawingWindow& w) largeurMont = frand(largeurMin, largeurMax); hauteurMont = frand(hauteurMin, hauteurMax); wnd = frand(-30, 30); - w.setBgColor("white"); + w.setBgColor("skyblue"); w.clearGraph(); dessineTerrain(w, largeurMont, hauteurMont); dessineChateau(w, positionChateau1); @@ -241,7 +241,7 @@ int tir(DrawingWindow& w, vy += ay * dt; w.msleep(10); - w.setColor("white"); + w.setColor("skyblue"); w.fillCircle(wx, wy, 2); // w.setColor("black"); // w.drawPoint(wx, wy); -- 2.20.1