summaryrefslogtreecommitdiff
path: root/include/f_ap
diff options
context:
space:
mode:
authorTakaRikka <38417346+TakaRikka@users.noreply.github.com>2025-10-27 20:55:46 -0700
committerGitHub <noreply@github.com>2025-10-28 05:55:46 +0200
commit73927f50a94d85cac09bd31aff71a7ffb5194cbd (patch)
tree0cd268513d9ede4d40a4177a2524b76c87242fe0 /include/f_ap
parent577747e228290cd4018135a454f4ae7caf694e90 (diff)
kankyo / m_do_ext debug stuff (#2759)
* kankyo debug work * finish draw packets
Diffstat (limited to 'include/f_ap')
-rw-r--r--include/f_ap/f_ap_game.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/f_ap/f_ap_game.h b/include/f_ap/f_ap_game.h
index b5cc371d80..5827100a27 100644
--- a/include/f_ap/f_ap_game.h
+++ b/include/f_ap/f_ap_game.h
@@ -139,6 +139,22 @@ inline u8 fapGmHIO_getHostIO() {
return g_HIO.mUsingHostIO;
}
+inline void fapGmHIO_set2Ddraw(u8 param_0) {
+ g_HIO.mDisplay2D = param_0;
+}
+
+inline u8 fapGmHIO_get2Ddraw() {
+ return g_HIO.mDisplay2D;
+}
+
+inline void fapGmHIO_offPrint() {
+ g_HIO.mDisplayPrint &= (u8)~0x1;
+}
+
+inline void fapGmHIO_onPrint() {
+ g_HIO.mDisplayPrint |= (u8)0x1;
+}
+
struct fapGm_dataMem {
enum HeapType_e {
HeapType_Error_e,