fix infinite loop error message sometimes always coming up on startup
This commit is contained in:
parent
5be9773eca
commit
998f5a4cad
@ -35,8 +35,8 @@ namespace ui
|
|||||||
void Begin(int width, int height);
|
void Begin(int width, int height);
|
||||||
inline bool Running() { return running_; }
|
inline bool Running() { return running_; }
|
||||||
inline bool Broken() { return break_; }
|
inline bool Broken() { return break_; }
|
||||||
inline int LastTick() { return lastTick; }
|
inline long unsigned int LastTick() { return lastTick; }
|
||||||
inline void LastTick(int tick) { lastTick = tick; }
|
inline void LastTick(long unsigned int tick) { lastTick = tick; }
|
||||||
void Exit();
|
void Exit();
|
||||||
void Break();
|
void Break();
|
||||||
void UnBreak();
|
void UnBreak();
|
||||||
@ -92,7 +92,7 @@ namespace ui
|
|||||||
bool break_;
|
bool break_;
|
||||||
bool FastQuit;
|
bool FastQuit;
|
||||||
|
|
||||||
int lastTick;
|
long unsigned int lastTick;
|
||||||
int mouseb_;
|
int mouseb_;
|
||||||
int mousex_;
|
int mousex_;
|
||||||
int mousey_;
|
int mousey_;
|
||||||
|
Reference in New Issue
Block a user