diff options
| author | Joel Bodenmann <joel@unormal.org> | 2013-10-05 02:32:35 +0200 |
|---|---|---|
| committer | inmarket <andrewh@inmarket.com.au> | 2013-10-06 15:47:59 +1000 |
| commit | b3ee216bd2565e8ab9298f1f54b8e6df762b7d58 (patch) | |
| tree | cea1f7bb188295522f3484559945fe2317ef74eb /src | |
| parent | d7d02395d0c1afe27bc39eeddc17899084c72de9 (diff) | |
| download | uGFX-b3ee216bd2565e8ab9298f1f54b8e6df762b7d58.tar.gz uGFX-b3ee216bd2565e8ab9298f1f54b8e6df762b7d58.tar.bz2 uGFX-b3ee216bd2565e8ab9298f1f54b8e6df762b7d58.zip | |
Updates from main-line code
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 e789ee74..25b7d804 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), HIGH_PRIORITY, GTimerThreadHandler, NULL);
+ hThread = gfxThreadCreate(waTimerThread, sizeof(waTimerThread), GTIMER_PRIORITY, GTimerThreadHandler, NULL);
if (hThread) gfxThreadClose(hThread); // We never really need the handle again
}
|
