From 29130cb367fa74e4b20df77f8fb513938732c256 Mon Sep 17 00:00:00 2001 From: Ed_ Date: Thu, 26 Jun 2025 21:44:14 -0400 Subject: [PATCH] old stuff Planning to come back to this and eval some state. Not ready to fully come back still out learning from the past. --- .editorconfig | 1 - .gitignore | 4 +++- code/grime/hashmap_chained.odin | 2 +- scripts/build.ps1 | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.editorconfig b/.editorconfig index afc361d..5a5faa9 100644 --- a/.editorconfig +++ b/.editorconfig @@ -21,7 +21,6 @@ indent_style = tab indent_size = 2 charset = utf-8 - [*.{natvis, natstepfilter}] indent_style = tab indent_size = 4 diff --git a/.gitignore b/.gitignore index 6a640b8..d43ad95 100644 --- a/.gitignore +++ b/.gitignore @@ -10,4 +10,6 @@ Sectr.sublime-workspace ols.json .vscode/settings.json thirdparty -toolchain +# toolchain +assets/TX-02-1WN9N6Q8 +*.spall diff --git a/code/grime/hashmap_chained.odin b/code/grime/hashmap_chained.odin index 39dccfa..814929e 100644 --- a/code/grime/hashmap_chained.odin +++ b/code/grime/hashmap_chained.odin @@ -107,7 +107,7 @@ hmap_chained_clear :: proc( using self : HMapChained($Type)) continue } for probe_slot := slot.next; probe_slot != nil; probe_slot = probe_slot.next { - slot.occupied = false + probe_slot.occupied = false } slot.occupied = false } diff --git a/scripts/build.ps1 b/scripts/build.ps1 index 393fc1e..f4c7b40 100644 --- a/scripts/build.ps1 +++ b/scripts/build.ps1 @@ -200,7 +200,7 @@ push-location $path_root $build_args = @() $build_args += $command_build - $build_args += './sectr' + $build_args += 'sectr' $build_args += $flag_build_mode_dll $build_args += $flag_output_path + $module_dll $build_args += ($flag_collection + $pkg_collection_codebase)