diff options
| author | gingerBill <bill@gingerbill.org> | 2024-01-28 22:18:51 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2024-01-28 22:18:51 +0000 |
| commit | 3e7e779abf305f55a5b4fe59f3b905b397c0fe87 (patch) | |
| tree | 8c92f5f4fc9e7eb7d83f03c80e592c77299f06ad /core/log | |
| parent | 6a07effdd2cb7c369aa4c9711ff66b840abe3033 (diff) | |
Replace `core:*` to `base:*` where appropriate
Diffstat (limited to 'core/log')
| -rw-r--r-- | core/log/log.odin | 2 | ||||
| -rw-r--r-- | core/log/log_allocator.odin | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/log/log.odin b/core/log/log.odin index b4039caa0..0d89fdb74 100644 --- a/core/log/log.odin +++ b/core/log/log.odin @@ -1,6 +1,6 @@ package log -import "core:runtime" +import "base:runtime" import "core:fmt" diff --git a/core/log/log_allocator.odin b/core/log/log_allocator.odin index 322c2e717..16f1abe31 100644 --- a/core/log/log_allocator.odin +++ b/core/log/log_allocator.odin @@ -1,6 +1,6 @@ package log -import "core:runtime" +import "base:runtime" import "core:fmt" Log_Allocator_Format :: enum { |