aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--src/main.odin5
-rw-r--r--src/wav/wav.odin1
3 files changed, 4 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore
index bf10e53..78b83a3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,6 @@
*.pdb
+info.txt
+*.res
*.exe
test\
*.rdi \ No newline at end of file
diff --git a/src/main.odin b/src/main.odin
index 037d91d..fe9aaa1 100644
--- a/src/main.odin
+++ b/src/main.odin
@@ -13,9 +13,7 @@ import rl "vendor:raylib"
import "wav"
/*
-TODO: Simplify pre-allocation. Just allocate a bunch. It's probably fine.
- Maybe do it by just counting how many lines are longer than 2 characters.
-TODO: Drag-n-drop window if no files are specified
+TODO: Test on files from SD788t
*/
when ODIN_OS == .Windows {
@@ -87,7 +85,6 @@ CSV :: string
Directory :: [dynamic]string
Job :: union {CSV, Directory}
job_list : [dynamic]Job
-// TODO: Changing file_list to job_list, so the Directory jobs can contain a list of all the relevant .wav files before being sent to parse_folder()
main :: proc() {
when ODIN_DEBUG {
diff --git a/src/wav/wav.odin b/src/wav/wav.odin
index 89dd5eb..0d148c7 100644
--- a/src/wav/wav.odin
+++ b/src/wav/wav.odin
@@ -9,6 +9,7 @@ import "xml"
/*
TODO: Support RF64
+TODO: Test on files from SD788t
TODO: Support music metadata
*/