Changed the "counter" variables to the proper type (Uint32).

This commit is contained in:
onpon4 2015-03-24 18:55:09 -04:00
parent 1567595def
commit af11caac2b
1 changed files with 2 additions and 2 deletions

View File

@ -270,12 +270,12 @@ struct globalEngineVariables {
long missionCompleteTimer;
// Times the mission normally
unsigned int counter2;
Uint32 counter2;
int timeTaken; // In seconds
// For missions with a time limit
int timeMission;
unsigned int counter;
Uint32 counter;
int seconds;
int minutes;