5f32779ceb
- To override the last used boot mode on soft reboot, you only need to press A if you want to boot to the default option. Holding L(+payload button)/R is enough for the other modes. - Added version number to the config menu - Replaced the memsearch algorithm with a faster one - Integrated 3ds_injector from @yifanlu. This brings us region free and all the other FreeMultiPatcher patches. Other than that, you now have the possibility to display the currently booted NAND/FIRM in System Settings! - Rewritten most code for the config menu. You now can navigate to the first/last options with left and right. - You can now choose the 9.0 FIRM to be default in the config menu. This will essentially switch "no buttons" and L in both modes. - You can now choose the second emuNAND to be default in the config menu. This will essentially switch "B is not pressed" and "B is pressed". - When the second emuNAND is booted, it will persist like the other boot options on soft reboot - Bugfixes
26 lines
817 B
C
26 lines
817 B
C
/*
|
|
* buttons.h
|
|
* by Aurora Wright
|
|
* Copyright (c) 2016 All Rights Reserved
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
#define HID_PAD (*(vu16 *)0x10146000 ^ 0xFFF)
|
|
#define BUTTON_R1 (1 << 8)
|
|
#define BUTTON_L1 (1 << 9)
|
|
#define BUTTON_A 1
|
|
#define BUTTON_B (1 << 1)
|
|
#define BUTTON_SELECT (1 << 2)
|
|
#define BUTTON_START (1 << 3)
|
|
#define BUTTON_RIGHT (1 << 4)
|
|
#define BUTTON_LEFT (1 << 5)
|
|
#define BUTTON_UP (1 << 6)
|
|
#define BUTTON_DOWN (1 << 7)
|
|
#define BUTTON_L1R1 ((1 << 8) | (1 << 9))
|
|
#define SAFE_MODE (BUTTON_L1R1 | BUTTON_A | BUTTON_UP)
|
|
#define OPTION_BUTTONS (BUTTON_L1R1 | BUTTON_A)
|
|
#define PAYLOAD_BUTTONS ((BUTTON_L1 | BUTTON_A) ^ 0xFFF)
|
|
#define MENU_BUTTONS (BUTTON_LEFT | BUTTON_RIGHT | BUTTON_UP | BUTTON_DOWN | BUTTON_A | BUTTON_START) |