Use Megabyte constant

In commit 698fcb7813, the size procedures
were replaced with constants instead.
This commit is contained in:
Kevin Sjöberg
2022-09-03 19:52:02 +02:00
parent 31a192454c
commit c94ca4c0cb

View File

@@ -70,7 +70,7 @@ walk_files :: proc(info: os.File_Info, in_err: os.Errno) -> (err: os.Errno, skip
}
main :: proc() {
init_global_temporary_allocator(mem.megabytes(100));
init_global_temporary_allocator(mem.Megabyte * 100)
args: Args;