gingerBill 1 year ago
parent
commit
1770e3a9a9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/math/rand/rand.odin

+ 1 - 1
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)
 }