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:
parent
1a41694d58
commit
d1f0585443
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue