diff options
| author | Phil <homan.phil@gmail.com> | 2022-04-12 16:21:16 -0700 |
|---|---|---|
| committer | Phil <homan.phil@gmail.com> | 2022-04-12 16:21:16 -0700 |
| commit | 85a427fae1b717326372d9849cbfb09eaa72b6ed (patch) | |
| tree | 1810f2ebb479def034bc383fa1c466deab8106c9 /src/main.odin | |
| parent | 6fe185b60725700e0e60b9c5fbb8a093862baf66 (diff) | |
Update mem.Megabyte etc. usage
Diffstat (limited to 'src/main.odin')
| -rw-r--r-- | src/main.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.odin b/src/main.odin index 5bfb880..e3d3bee 100644 --- a/src/main.odin +++ b/src/main.odin @@ -95,7 +95,7 @@ main :: proc() { context.logger = verbose_logger - init_global_temporary_allocator(mem.megabytes(100)) + init_global_temporary_allocator(mem.Megabyte*100) run(&reader, &writer) } |