diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2023-04-03 22:25:55 +0200 |
|---|---|---|
| committer | DanielGavin <danielgavin5@hotmail.com> | 2023-04-03 22:25:55 +0200 |
| commit | bd0461b45a29f2b638252a8ff27ecdb764f1c4ec (patch) | |
| tree | c9072e1baf3b1b6c59a0a03a5dea987f96dc9d0d /src/main.odin | |
| parent | 58606d4394eac344516513d805902367030eaf79 (diff) | |
File cache was using the wrong allocator - might fix the issues with semantic tokens crashing ones in a while.
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 5ce8254..cc21cb9 100644 --- a/src/main.odin +++ b/src/main.odin @@ -113,7 +113,7 @@ main :: proc() { */ when ODIN_DEBUG && ODIN_OS == .Windows { - set_stacktrace() + //set_stacktrace() } init_global_temporary_allocator(mem.Megabyte * 100) |