Remove @(static) for global variables

This commit is contained in:
gingerBill
2021-05-19 11:51:48 +01:00
parent b34e4a9fd1
commit 26ce40c188
5 changed files with 6 additions and 17 deletions
+2 -2
View File
@@ -6,9 +6,9 @@ Rand :: struct {
}
@(private, static)
@(private)
_GLOBAL_SEED_DATA := 1234567890;
@(private, static)
@(private)
global_rand := create(u64(uintptr(&_GLOBAL_SEED_DATA)));
set_global_seed :: proc(seed: u64) {