From c711ee9ea7e5a15d8963fbace1d658c31c5fbea7 Mon Sep 17 00:00:00 2001 From: gijs Date: Fri, 20 Oct 2023 12:40:44 +0200 Subject: [PATCH] Split `nuGfxSetCfb` to C --- splat.yaml | 2 +- src/nu/nugfxsetcfb.c | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 src/nu/nugfxsetcfb.c diff --git a/splat.yaml b/splat.yaml index ec84725..c8053b3 100644 --- a/splat.yaml +++ b/splat.yaml @@ -116,7 +116,7 @@ segments: - [0x19DD0, c, "_ob_questionable_glass"] - [0x19E10, asm] - [0x19E30, c, "nu/nugfxretracewait"] - - [0x19EB0, asm] + - [0x19EB0, c, "nu/nugfxsetcfb"] - [0x19FC0, c, "black"] - [0x1A050, c, "_ob_icy_coast"] - [0x1A4F0, c, "rom_copy"] diff --git a/src/nu/nugfxsetcfb.c b/src/nu/nugfxsetcfb.c new file mode 100644 index 0000000..6c950b5 --- /dev/null +++ b/src/nu/nugfxsetcfb.c @@ -0,0 +1,3 @@ +#include "common.h" + +INCLUDE_ASM(const s32, "nu/nugfxsetcfb", nuGfxSetCfb);