mirror of
https://github.com/izzy2lost/Starship.git
synced 2026-07-05 15:19:42 -07:00
D-Pad control for path change in Map
This commit is contained in:
@@ -3772,6 +3772,12 @@ bool Map_Input_CursorY(void) {
|
||||
|
||||
if ((stickY > -40) && (stickY < 40)) {
|
||||
stickY = 0;
|
||||
}
|
||||
|
||||
if (gControllerPress[gMainController].button & D_JPAD) {
|
||||
stickY = -30;
|
||||
} else if (gControllerPress[gMainController].button & U_JPAD) {
|
||||
stickY = +30;
|
||||
}
|
||||
|
||||
if (stickY != 0) {
|
||||
|
||||
Reference in New Issue
Block a user