summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/code_80091750.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/code_80091750.c b/src/code_80091750.c
index cf08bb084..34458460a 100644
--- a/src/code_80091750.c
+++ b/src/code_80091750.c
@@ -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;
}
}