HELP, For Loop

How would you do a for loop for the eyes in this code
________________________________
#include "DarkGDK.h"


void DarkGDK ( void )


{
int x;
for(x=1;x<=20;x++);
dbCircle(212,141,15);
dbCircle(282,141,15);
//THESE ARE THE EYES!!
im trying to for loop the eyes to a solid white color instead of the original black back ground.

dbEllipse(243,179,95,125);
dbLine(244,157,244,207);
dbLine(281,231,245,243);
dbLine(245,243,206,231);

dbWaitKey();
}
_________________________________________

please help!
Topic archived. No new replies allowed.