aboutsummaryrefslogtreecommitdiffstats
path: root/demos/modules/gos/threads/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'demos/modules/gos/threads/main.c')
-rw-r--r--demos/modules/gos/threads/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/modules/gos/threads/main.c b/demos/modules/gos/threads/main.c
index 4ef81411..1caef39b 100644
--- a/demos/modules/gos/threads/main.c
+++ b/demos/modules/gos/threads/main.c
@@ -51,8 +51,8 @@ int main(void)
gfxInit();
// Give this plenty of stack. Stack size optimisation should be a production change only
- gfxThreadCreate(0, 2048, NORMAL_PRIORITY, heartbeat1, 0);
- gfxThreadCreate(0, 2048, NORMAL_PRIORITY, heartbeat2, 0);
+ gfxThreadCreate(0, 2048, gThreadpriorityNormal, heartbeat1, 0);
+ gfxThreadCreate(0, 2048, gThreadpriorityNormal, heartbeat2, 0);
while (1) {
DEBUGWRITE("thread main\n");