Fix else condition in modulo.

This commit is contained in:
Dario 2024-05-18 22:31:48 -03:00
parent b2e98b9d28
commit ed7acede71

View File

@ -651,7 +651,7 @@ namespace RT64 {
return r < 0 ? r + b : r; return r < 0 ? r + b : r;
} }
else { else {
return 0; return a;
} }
}; };