diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2015-12-16 07:35:55 -0500 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2015-12-16 07:35:55 -0500 |
commit | 983602c87add7161cc82311e690e066f96493c31 (patch) | |
tree | 3c4f3bb9eb440e6d78360291138c68c7faa86388 /include/common.h | |
parent | bf82dd59140d32f4eb265ae69a44784b5fda116a (diff) | |
parent | 2286361ea87b42e73ec2f544265c5fd5e1b5713b (diff) |
Stuff
Diffstat (limited to 'include/common.h')
-rw-r--r-- | include/common.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/common.h b/include/common.h index 31126d7..08ec73f 100644 --- a/include/common.h +++ b/include/common.h @@ -160,4 +160,17 @@ void safeSetColor(int r,int g,int b); void safeSetColorA(int r,int g,int b,int a); +/** + * We've encountered many problems when attempting to create delays for triggering + * the logic function. As a result, we decided on using the timing libraries given + * by <chrono> in the standard C++ library. This function simply returns the amount + * of milliseconds that have passed sine the epoch. + */ + +#ifdef __WIN32__ +#define millis() SDL_GetTicks() +#else +unsigned int millis(void); +#endif // __WIN32__ + #endif // COMMON_H |