Minor style change

This commit is contained in:
Nekotekina 2015-07-19 14:36:32 +03:00
parent 8175630619
commit 2f7fe35f5c
42 changed files with 329 additions and 381 deletions

View file

@ -87,7 +87,7 @@ void CallbackManager::Init()
thread->prio = 1001;
thread->stack_size = 0x10000;
thread->custom_task = task;
thread->Run();
thread->run();
m_cb_thread = thread;
}
@ -98,7 +98,7 @@ void CallbackManager::Init()
thread->prio = 1001;
thread->stack_size = 0x10000;
thread->custom_task = task;
thread->Run();
thread->run();
m_cb_thread = thread;
}