From 3f19e7920cd62e39148578adc082010c383c3719 Mon Sep 17 00:00:00 2001 From: Dave Murphy Date: Mon, 2 Feb 2015 19:30:08 +0000 Subject: [PATCH] threads take void * not u32 --- libctru/include/3ds/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))