1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-02-20 22:05:21 +00:00

Fix reversed array access in z_boss_dodongo.c

This commit is contained in:
Roman971 2022-06-04 23:58:27 +02:00
parent 1a41694d58
commit d1f0585443

View file

@ -55,7 +55,7 @@ static InitChainEntry sInitChain[] = {
};
void func_808C1190(s16* arg0, u8* arg1, s16 arg2) {
if (arg2[arg1] != 0) {
if (arg1[arg2] != 0) {
arg0[arg2 / 2] = 0;
}
}