mirror of
https://github.com/Maschell/controller_patcher.git
synced 2024-11-21 19:49:16 +01:00
Fixed the thread to work with the new dynamic libs
This commit is contained in:
parent
718ac61d77
commit
3bf07857be
@ -38,7 +38,7 @@ public:
|
||||
//! save attribute assignment
|
||||
iAttributes = iAttr;
|
||||
//! allocate the thread
|
||||
pThread = memalign(8, 0x1000);
|
||||
pThread = (OSThread*) memalign(8, 0x1000);
|
||||
//! allocate the stack
|
||||
pThreadStack = (u8 *) memalign(0x20, iStackSize);
|
||||
//! create the thread
|
||||
@ -112,7 +112,7 @@ private:
|
||||
return 0;
|
||||
}
|
||||
s32 iAttributes;
|
||||
void *pThread;
|
||||
OSThread* pThread;
|
||||
u8 *pThreadStack;
|
||||
Callback pCallback;
|
||||
void *pCallbackArg;
|
||||
|
Loading…
Reference in New Issue
Block a user