Fix missing semicolon

This commit is contained in:
Vinícius Bispo 2024-09-16 15:26:00 -03:00 committed by GitHub
parent 7e234c79aa
commit 41e2c50ab8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -402,7 +402,7 @@ RMAPI Vector2 Vector2Limit(Vector2 v, float limit) {
result.x = v.x*ilength*limit; result.x = v.x*ilength*limit;
result.y = v.y*ilength*limit; result.y = v.y*ilength*limit;
} }
return result return result;
} }
// Transforms a Vector2 by a given Matrix // Transforms a Vector2 by a given Matrix