From 1770e3a9a97620125f6333db7678dd4ec34fa329 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Thu, 11 Jul 2024 17:19:12 +0100 Subject: [PATCH] Fix typo --- core/math/rand/rand.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/math/rand/rand.odin b/core/math/rand/rand.odin index f9b3149d5..4fdbad01c 100644 --- a/core/math/rand/rand.odin +++ b/core/math/rand/rand.odin @@ -75,7 +75,7 @@ reset_bytes :: proc(bytes: []byte, gen := context.random_generator) { runtime.random_generator_reset_bytes(gen, bytes) } -query_info :: proc(gen: context.random_generator) -> Generator_Query_Info { +query_info :: proc(gen := context.random_generator) -> Generator_Query_Info { return runtime.random_generator_query_info(gen) }