diff options
author | Joel Bodenmann <joel@unormal.org> | 2013-10-20 17:27:42 +0200 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2013-10-20 17:27:42 +0200 |
commit | 258c97d67dffe79f4e4bd43618b766c7c9ebbcce (patch) | |
tree | f05ae3cdb4fcb02f7ad13cf7659fd63b351de6c3 /src | |
parent | 929dbabf689ff2ad688dc3a3748faeb3bd351698 (diff) | |
download | uGFX-258c97d67dffe79f4e4bd43618b766c7c9ebbcce.tar.gz uGFX-258c97d67dffe79f4e4bd43618b766c7c9ebbcce.tar.bz2 uGFX-258c97d67dffe79f4e4bd43618b766c7c9ebbcce.zip |
fixed wrong macro
Diffstat (limited to 'src')
-rw-r--r-- | src/gtimer/gtimer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gtimer/gtimer.c b/src/gtimer/gtimer.c index 25b7d804..7425f65d 100644 --- a/src/gtimer/gtimer.c +++ b/src/gtimer/gtimer.c @@ -132,7 +132,7 @@ void gtimerStart(GTimer *pt, GTimerFunction fn, void *param, bool_t periodic, de // Start our thread if not already going
if (!hThread) {
- hThread = gfxThreadCreate(waTimerThread, sizeof(waTimerThread), GTIMER_PRIORITY, GTimerThreadHandler, NULL);
+ hThread = gfxThreadCreate(waTimerThread, sizeof(waTimerThread), GTIMER_THREAD_PRIORITY, GTimerThreadHandler, NULL);
if (hThread) gfxThreadClose(hThread); // We never really need the handle again
}
|