From c3cc860cc4cdeb9856f4443b5d8eb94e737297d0 Mon Sep 17 00:00:00 2001 From: Reonu Date: Thu, 20 May 2021 22:32:19 +0100 Subject: [PATCH] declared create_dl_scale_matrix in ingame_menu.h (thanks cheeze) --- src/game/ingame_menu.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/game/ingame_menu.h b/src/game/ingame_menu.h index c68e37ba..c0e60da1 100644 --- a/src/game/ingame_menu.h +++ b/src/game/ingame_menu.h @@ -117,6 +117,7 @@ extern s8 gRedCoinsCollected; void create_dl_identity_matrix(void); void create_dl_translation_matrix(s8 pushOp, f32 x, f32 y, f32 z); void create_dl_ortho_matrix(void); +void create_dl_scale_matrix(s8 pushOp, f32 x, f32 y, f32 z); void print_generic_string(s16 x, s16 y, const u8 *str); void print_hud_lut_string(s8 hudLUT, s16 x, s16 y, const u8 *str); void print_menu_generic_string(s16 x, s16 y, const u8 *str);