Skip to content

Commit

Permalink
Fix IDO meme (#620)
Browse files Browse the repository at this point in the history
* Update code_80091750.c
  • Loading branch information
MegaMech authored Apr 21, 2024
1 parent a620e1e commit ff2a34f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/code_80091750.c
Original file line number Diff line number Diff line change
Expand Up @@ -2840,8 +2840,10 @@ void func_80095AE0(Mtx2 *arg0, f32 arg1, f32 arg2, f32 arg3, f32 arg4) {


#ifdef AVOID_UB
for (int row = 0; row < 4; row++) {
for (int col = 0; col < 4; col++) {
size_t row;
size_t col;
for (row = 0; row < 4; row++) {
for (col = 0; col < 4; col++) {
arg0->m[row][col] = 0;
}
}
Expand Down

0 comments on commit ff2a34f

Please sign in to comment.