ac_snowman 50%

This commit is contained in:
Cuyler36
2025-06-06 02:11:16 -04:00
parent dee81a6d87
commit 63f29f3eb4
10 changed files with 846 additions and 26 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ f32 fatan2(f32 x, f32 y) {
return atan2(x, y);
}
f64 fsqrt(f32 x) {
f32 fsqrt(f32 x) {
return sqrtf(x);
}