Learning how to create cheats with this:
https://gbatemp.net/threads/tutorial-building-ntr-custom-firmware-cheat-plugins-w-cheat-menu.411189/
Is there some documentation on each button on the 3DS' corresponding code snippet for useage?
A snippet in the thread tells me select is 'BUTTON_SE'
Button List for NTR cheat plugin creation?
https://gbatemp.net/threads/tutorial-building-ntr-custom-firmware-cheat-plugins-w-cheat-menu.411189/
Is there some documentation on each button on the 3DS' corresponding code snippet for useage?
A snippet in the thread tells me select is 'BUTTON_SE'
Code:
key = getKey(); if (key == BUTTON_SE) { // toggle cheats when SELECT button pressed cheatEnabled = !cheatEnabled; // wait until key is up...