Browse Source

Rename rand to rand_f64

Damian Tarnawski 1 year ago
parent
commit
166803a2a5
1 changed files with 3 additions and 2 deletions
  1. 3 2
      core/math/rand/system_js.odin

+ 3 - 2
core/math/rand/system_js.odin

@@ -2,10 +2,11 @@ package rand
 
 foreign import "odin_env"
 foreign odin_env {
-	rand :: proc "contextless" () -> f64 ---
+	@(link_name = "rand")
+	rand_f64 :: proc "contextless" () -> f64 ---
 }
 
 @(require_results)
 _system_random :: proc() -> u64 {
-	return u64(rand() * 0x1fffffffffffff)
+	return u64(rand_f64() * 0x1fffffffffffff)
 }