From 258c97d67dffe79f4e4bd43618b766c7c9ebbcce Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Sun, 20 Oct 2013 17:27:42 +0200 Subject: [PATCH] fixed wrong macro --- src/gtimer/gtimer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }