matched sub_080B1864

This commit is contained in:
Henny022p
2021-02-26 18:56:13 +01:00
parent effdc3d019
commit ea59111691
2 changed files with 17 additions and 36 deletions
+17
View File
@@ -205,3 +205,20 @@ u16 sub_080B180C(u16 unk_1, u16* unk_2) {
}
return ret;
}
u32 sub_080B1864(u16 unk_1, u16* unk_2, u32 unk_3) {
u32 ret;
u8 i;
ret = unk_3;
for(i = 0; i < 3; i++){
ret = sub_080B1698(unk_1, unk_2);
if (ret == 0){
ret = sub_080B180C(unk_1, unk_2);
if (ret == 0)
break;
}
}
return ret;
}