- Home /
BCE0044: expecting ), found ';'.
for (countDown = countMax; countDown>-1;countDown;--){
if(countDown == 0){
guiCountDown = "GO!";
}
What's the problem on my code :( .
I want to make countsdown for my race game.
Comment
Answer by perchik · Mar 13, 2014 at 03:34 PM
You have an extra semicolon in your for statement, should be:
for (countDown = countMax; countDown>-1;countDown--){
Your answer
Follow this Question
Related Questions
Countdown To Start Game 2 Answers
Major Race Countdown Bug 0 Answers
How to Avoid Corner paths in A* pathfinding 1 Answer
3dText problem 1 Answer
Timer not work :( 0 Answers