fix functions not returning values (#2942)

* fix functions not returning values

* implement functions that should return values
This commit is contained in:
Jcw87
2025-12-11 15:31:44 -08:00
committed by GitHub
parent 2c6986f1cc
commit ae4ad9f477
40 changed files with 146 additions and 61 deletions
+2 -2
View File
@@ -189,7 +189,7 @@ static f32 dummyFloat3(int _) {
switch (_) {
case 0:
return 30.0f;
case 1:
default:
return 300.0f;
}
}
@@ -266,7 +266,7 @@ static f32 dummyFloat4(int _) {
return 2000.0f;
case 1:
return 1000.0f;
case 2:
default:
return -4000.0f;
}
}