1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-08-10 08:50:23 +00:00

sgiDrawIds -> giDrawIds

This commit is contained in:
Dragorn421 2021-12-16 17:42:23 +01:00
parent ec4d0fa5a3
commit 88474d7cb5
No known key found for this signature in database
GPG key ID: 8ACAE4BA399BD6B0

View file

@ -488,10 +488,10 @@ void EnExItem_DrawHeartPiece(EnExItem* this, GlobalContext* globalCtx) {
}
void EnExItem_DrawMagic(EnExItem* this, GlobalContext* globalCtx, s16 magicIndex) {
static s16 sgiDrawIds[] = { GID_DINS_FIRE, GID_FARORES_WIND, GID_NAYRUS_LOVE };
static s16 giDrawIds[] = { GID_DINS_FIRE, GID_FARORES_WIND, GID_NAYRUS_LOVE };
func_8002ED80(&this->actor, globalCtx, 0);
GetItem_Draw(globalCtx, sgiDrawIds[magicIndex]);
GetItem_Draw(globalCtx, giDrawIds[magicIndex]);
}
void EnExItem_DrawKey(EnExItem* this, GlobalContext* globalCtx, s32 index) {