-
1
-
2
-
3
-
4
-
5
-
6
-
7
-
8
-
9
-
10
-
11
-
12
-
13
-
14
-
15
-
16
-
17
-
18
-
19
-
20
-
21
diff --git a/c/raylib_bindings.c b/c/raylib_bindings.c
index 902a945..7539506 100644
--- a/c/raylib_bindings.c
+++ b/c/raylib_bindings.c
@@ -314,11 +314,11 @@ static inline Camera2D camera2D_of_arg(lean_obj_arg camera) {
return (Camera2D){offset, target, rotation, zoom};
}
-lean_obj_res getRandomValue(uint32_t min, uint32_t max)
- __attribute__((optnone)) {
- // BUG: This always seems to return `min`
- return lean_io_result_mk_ok(lean_box_uint32(GetRandomValue(min, max)));
-}
+// lean_obj_res getRandomValue(uint32_t min, uint32_t max)
+// __attribute__((optnone)) {
+// // BUG: This always seems to return `min`
+// return lean_io_result_mk_ok(lean_box_uint32(GetRandomValue(min, max)));
+// }
lean_obj_res initWindow(lean_obj_arg width, lean_obj_arg height,
b_lean_obj_arg title) {