From 535a89bea154ce3b94b37825f33f5b03e2df21a6 Mon Sep 17 00:00:00 2001 From: headshot2017 Date: Thu, 26 Jan 2023 22:25:55 -0400 Subject: [PATCH] marioId is an int32 --- test/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/main.cpp b/test/main.cpp index 3e50a73..687956b 100644 --- a/test/main.cpp +++ b/test/main.cpp @@ -73,7 +73,7 @@ int main( void ) sm64_global_init( rom, texture ); sm64_audio_init(rom); sm64_static_surfaces_load( surfaces, surfaces_count ); - uint32_t marioId = sm64_mario_create( 0, 1000, 0 ); + int32_t marioId = sm64_mario_create( 0, 1000, 0 ); free( rom );