From: Dave Murphy Date: Mon, 2 Feb 2015 19:30:08 +0000 (+0000) Subject: threads take void * not u32 X-Git-Tag: v0.4.0~5^2~8 X-Git-Url: https://chaos.moe/g/?a=commitdiff_plain;h=3f19e7920cd62e39148578adc082010c383c3719;p=corbenik%2Fctrulib.git threads take void * not u32 --- diff --git a/libctru/include/3ds/types.h b/libctru/include/3ds/types.h index 550c0d2..88d09fc 100644 --- a/libctru/include/3ds/types.h +++ b/libctru/include/3ds/types.h @@ -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))