Day 34 complete.

This commit is contained in:
igor
2026-04-15 11:58:51 -07:00
parent 713738b9f3
commit cd0ed29b30
5 changed files with 316 additions and 199 deletions
+1 -1
View File
@@ -8,7 +8,7 @@
S32 RoundF32toS32(F32 Real32)
{
S32 Result = (S32)(Real32 + 0.5f);
S32 Result = (S32)roundf(Real32);
return Result;
}