diff options
| author | Reinmmar <herwig.orlich@gmail.com> | 2023-08-15 03:54:03 +0200 |
|---|---|---|
| committer | Reinmmar <herwig.orlich@gmail.com> | 2023-08-15 03:54:03 +0200 |
| commit | 1739e6205ad1803255eb9e73e4f7e42add7a3abd (patch) | |
| tree | 2bee0ad46984771b6cb9b74f50b77d8acf240055 /src/manager | |
| parent | 355e125cacff0295ba280667c9361b85e2714758 (diff) | |
Labeled all unlabeled inputs(if I didn't miss any)
Diffstat (limited to 'src/manager')
| -rw-r--r-- | src/manager/miscManager.c | 2 | ||||
| -rw-r--r-- | src/manager/vaatiAppearingManager.c | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/manager/miscManager.c b/src/manager/miscManager.c index c0c47a89..5ae26ace 100644 --- a/src/manager/miscManager.c +++ b/src/manager/miscManager.c @@ -434,6 +434,6 @@ void MiscManager_TypeF(MiscManager* this) { if (gPlayerEntity.action == PLAYER_TALKEZLO) { DeleteThisEntity(); } - gInput.heldKeys |= 0x4; + gInput.heldKeys |= SELECT_BUTTON; } #endif diff --git a/src/manager/vaatiAppearingManager.c b/src/manager/vaatiAppearingManager.c index 9e349cb1..6eabadd8 100644 --- a/src/manager/vaatiAppearingManager.c +++ b/src/manager/vaatiAppearingManager.c @@ -138,16 +138,16 @@ void VaatiAppearingManager_Action2(VaatiAppearingManager* this) { } void VaatiAppearingManager_Action3(VaatiAppearingManager* this) { - if ((gInput.heldKeys & 0x40) != 0) { + if ((gInput.heldKeys & DPAD_UP) != 0) { this->field_0x20--; } - if ((gInput.heldKeys & 0x80) != 0) { + if ((gInput.heldKeys & DPAD_DOWN) != 0) { this->field_0x20++; } - if ((gInput.heldKeys & 0x20) != 0) { + if ((gInput.heldKeys & DPAD_LEFT) != 0) { this->field_0x28--; } - if ((gInput.heldKeys & 0x10) != 0) { + if ((gInput.heldKeys & DPAD_RIGHT) != 0) { this->field_0x28++; } } |
