summaryrefslogtreecommitdiff
path: root/apps/plugins/sdl/src/thread
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/sdl/src/thread')
-rw-r--r--apps/plugins/sdl/src/thread/rockbox/SDL_systhread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/sdl/src/thread/rockbox/SDL_systhread.c b/apps/plugins/sdl/src/thread/rockbox/SDL_systhread.c
index 214cbe4597..f9dc877815 100644
--- a/apps/plugins/sdl/src/thread/rockbox/SDL_systhread.c
+++ b/apps/plugins/sdl/src/thread/rockbox/SDL_systhread.c
@@ -58,7 +58,7 @@ int SDL_SYS_CreateThread(SDL_Thread *thread, void *args)
58 thread->handle = rb->create_thread(rbsdl_runthread, stacks[threadnum], DEFAULT_STACK_SIZE, 58 thread->handle = rb->create_thread(rbsdl_runthread, stacks[threadnum], DEFAULT_STACK_SIZE,
59 0, names[threadnum] /* collisions allowed? */ 59 0, names[threadnum] /* collisions allowed? */
60 IF_PRIO(, PRIORITY_USER_INTERFACE) 60 IF_PRIO(, PRIORITY_USER_INTERFACE)
61 IF_COP(, COP)); 61 IF_COP(, CPU));
62 62
63 threadnum++; 63 threadnum++;
64 64