Fix missed increment statement

This commit is contained in:
Ryan Dwyer 2019-10-07 23:03:52 +10:00
parent 16df150af0
commit 532b5fb688
1 changed files with 1 additions and 1 deletions

View File

@ -1292,7 +1292,7 @@ bool ai002e(void)
u8 *cmd = g_Vars.ailist + g_Vars.aioffset;
g_Vars.aioffset = chraiGoToLabel(g_Vars.ailist,g_Vars.aioffset, cmd[2]);
} else {
g_Vars.aioffset = g_Vars.aioffset + 3;
g_Vars.aioffset += 3;
}
return false;