mirror of https://github.com/zeldaret/oot.git
rename to KaleidoScope_DrawInventoryEditor
This commit is contained in:
parent
c6d35d4cb6
commit
168f0133e2
|
@ -174,7 +174,7 @@ static s16 sSlotItems[] = {
|
|||
ITEM_BOOMERANG, ITEM_LENS_OF_TRUTH, ITEM_MAGIC_BEAN, ITEM_HAMMER, ITEM_ARROW_LIGHT, ITEM_NAYRUS_LOVE,
|
||||
};
|
||||
|
||||
void KaleidoScope_DrawDebugEditorText(Gfx** gfxP) {
|
||||
void KaleidoScope_DrawInventoryEditorText(Gfx** gfxP) {
|
||||
GfxPrint printer;
|
||||
s32 pad[2];
|
||||
|
||||
|
@ -231,7 +231,7 @@ void KaleidoScope_DrawDigit(PlayState* play, s32 digit, s32 rectLeft, s32 rectTo
|
|||
CLOSE_DISPS(play->state.gfxCtx, "../z_kaleido_debug.c", 220);
|
||||
}
|
||||
|
||||
void KaleidoScope_DrawDebugEditor(PlayState* play) {
|
||||
void KaleidoScope_DrawInventoryEditor(PlayState* play) {
|
||||
static s16 curSection = SECTION_RUPEES;
|
||||
static s16 curRow = 0;
|
||||
static s32 prevDBtnInput = 0;
|
||||
|
@ -268,7 +268,7 @@ void KaleidoScope_DrawDebugEditor(PlayState* play) {
|
|||
gfx = Gfx_Open(gfxRef);
|
||||
gSPDisplayList(OVERLAY_DISP++, gfx);
|
||||
|
||||
KaleidoScope_DrawDebugEditorText(&gfx);
|
||||
KaleidoScope_DrawInventoryEditorText(&gfx);
|
||||
|
||||
gSPEndDisplayList(gfx++);
|
||||
Gfx_Close(gfxRef, gfx);
|
||||
|
|
|
@ -3419,7 +3419,7 @@ void KaleidoScope_Draw(PlayState* play) {
|
|||
|
||||
if ((pauseCtx->debugState == PAUSE_DEBUG_STATE_INVENTORY_EDITOR_OPENING) ||
|
||||
(pauseCtx->debugState == PAUSE_DEBUG_STATE_INVENTORY_EDITOR_OPEN)) {
|
||||
KaleidoScope_DrawDebugEditor(play);
|
||||
KaleidoScope_DrawInventoryEditor(play);
|
||||
}
|
||||
|
||||
CLOSE_DISPS(play->state.gfxCtx, "../z_kaleido_scope_PAL.c", 3254);
|
||||
|
|
|
@ -220,7 +220,7 @@ typedef enum ItemQuad {
|
|||
|
||||
void KaleidoScope_DrawQuestStatus(struct PlayState* play, GraphicsContext* gfxCtx);
|
||||
s32 KaleidoScope_UpdateQuestStatusPoint(PauseContext* pauseCtx, s32 point);
|
||||
void KaleidoScope_DrawDebugEditor(struct PlayState* play);
|
||||
void KaleidoScope_DrawInventoryEditor(struct PlayState* play);
|
||||
void KaleidoScope_DrawPlayerWork(struct PlayState* play);
|
||||
void KaleidoScope_DrawEquipment(struct PlayState* play);
|
||||
void KaleidoScope_SetCursorPos(PauseContext* pauseCtx, u16 index, Vtx* vtx);
|
||||
|
|
Loading…
Reference in New Issue