]> Chaos Git - corbenik/ctrulib.git/commitdiff
threads take void * not u32
authorDave Murphy <WinterMute@users.noreply.github.com>
Mon, 2 Feb 2015 19:30:08 +0000 (19:30 +0000)
committerDave Murphy <WinterMute@users.noreply.github.com>
Mon, 2 Feb 2015 19:30:08 +0000 (19:30 +0000)
libctru/include/3ds/types.h

index 550c0d243c1ce14cb0ac4420600303efb4d65de1..88d09fcc25a7898e0c40bfbbb1abbc2b118e4742 100644 (file)
@@ -39,7 +39,7 @@ typedef volatile s64 vs64;
 
 typedef u32 Handle;
 typedef s32 Result;
-typedef void (*ThreadFunc)(u32);
+typedef void (*ThreadFunc)(void *);
 
 #define BIT(n) (1U<<(n))