diff options
| author | Dragorn421 <Dragorn421@users.noreply.github.com> | 2024-06-25 00:39:08 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-24 18:39:08 -0400 |
| commit | 2ce4742bf69faebb16ea1710c4d4e7902b1be0f1 (patch) | |
| tree | fd512e9dca50980936ab32ea30a10575be2879d7 /src/code/fault.c | |
| parent | 4dc70fefeee8f6b587aa611da580141c6b9ea4be (diff) | |
Fix misc 22 (#1971)
* remove trailing whitespace
* fix/docbug about dright for next page of fault menu
* // size = ...; -> // size = ...
* access `ColliderJntSph.elements` as an array
* fixup doc in PreRender.c
* empty line after decl
* gdSPDefLights1 xyz arguments for direction are signed 8bit values
* doc bug of bad use of free in EffDust actor
* decimal for Actor.colorFilterTimer
* shopItemEntries -> sShopItemEntries
* HEISHI4_AT_KAKRIKO_ENTRANCE -> HEISHI4_AT_KAKARIKO_ENTRANCE
* format
Diffstat (limited to 'src/code/fault.c')
| -rw-r--r-- | src/code/fault.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/code/fault.c b/src/code/fault.c index 7d8e62fef..16f1a183f 100644 --- a/src/code/fault.c +++ b/src/code/fault.c @@ -35,7 +35,7 @@ * - End Screen * This page informs you that there are no more pages to display. * - * To navigate the pages, START and A may be used to advance to the next page, and L toggles whether to + * To navigate the pages, DPad-Right or A may be used to advance to the next page, and L toggles whether to * automatically scroll to the next page after some time has passed. * DPad-Up may be pressed to enable sending fault pages over osSyncPrintf as well as displaying them on-screen. * DPad-Down disables sending fault pages over osSyncPrintf. @@ -911,6 +911,8 @@ void Fault_DrawMemDump(uintptr_t pc, uintptr_t sp, uintptr_t cLeftJump, uintptr_ } while (input->press.button == 0); // Move to next page + //! @bug DPad-Right does not move to the next page, unlike when on any other page + // START moving to the next page is unique to this page. if (CHECK_BTN_ALL(input->press.button, BTN_START) || CHECK_BTN_ALL(input->cur.button, BTN_A)) { return; } |
