Output text to bottom screen in debug mode? #102
Unanswered
Arkham-Slayer
asked this question in
Q&A
Replies: 1 comment 2 replies
-
ee_puts() prints a string to the console on the bottom screen, yes. And ee_printf() can also output numbers. It's not exactly clear to me if you just want to make the code do something when pressing X or you want to remap X so it acts as B in games. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm new to the 3ds homebrew development scene. I am trying to see if I can sort of have the X button act as B without un-mapping B in open_agb_firm like how gba vc inject has B to both B and X (I have already changed screen adjustment hotkey to Y as X would affect my new mapping). Specifically I am trying to get open_agb_firm to think B is being pushed when X is pressed.
I'm not sure if it's even reading my code since I have created a new function for this, so I am trying to have it output to the touch screen in the debug build since other outputs go there as well. From what I could understand of the source code I thought ee_puts("B has been pressed") would be the print function I need but it's not? Is there any function to print to the touch screen like the way I am proposing? Is what I am trying to do overall already tried by someone else and just isn't feasible?
Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions