From 1f4dace511991ee4429d01ad95884437d6471684 Mon Sep 17 00:00:00 2001 From: Falco Girgis Date: Sat, 26 Apr 2025 11:36:49 -0500 Subject: [PATCH] Fixing simulator builds. Ugh. Stupid typo. Accidentally defined mat_store2() to mat_store2(). :( --- vendor/librw/src/dc/rwdc_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/librw/src/dc/rwdc_common.h b/vendor/librw/src/dc/rwdc_common.h index 8e3d899f..9c8f673a 100644 --- a/vendor/librw/src/dc/rwdc_common.h +++ b/vendor/librw/src/dc/rwdc_common.h @@ -642,7 +642,7 @@ __hot inline void mat_apply_rotate_z(float z) { # define pvr_fog_table_linear(s,e) # else # define mat_load2(a) mat_load(a) -# define mat_store2(a) mat_store2(a) +# define mat_store2(a) mat_store(a) # define mat_identity2() mat_identity() # endif