summaryrefslogtreecommitdiff
path: root/tools/spectool.cc
diff options
context:
space:
mode:
authorskal <pascal.massimino@gmail.com>2026-02-07 10:11:47 +0100
committerskal <pascal.massimino@gmail.com>2026-02-07 10:11:47 +0100
commit4800e062e8ca38909ef85695ffbecc32a9d88799 (patch)
tree3e94b1ea9092cbbbce96aa089831eba8c90c6d11 /tools/spectool.cc
parent9702ea06ced9585a705c41186f814700bc859dcd (diff)
fix(tools): Correct include path in spectool.cc
Changed: #include "platform.h" → #include "platform/platform.h" This aligns with the project's include path structure where platform headers are under platform/ subdirectory. Fixes compilation error: fatal error: 'platform.h' file not found All tools now build successfully (spectool, specview, specplay). All 26 tests pass.
Diffstat (limited to 'tools/spectool.cc')
-rw-r--r--tools/spectool.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/spectool.cc b/tools/spectool.cc
index 4cd98c7..1c6411e 100644
--- a/tools/spectool.cc
+++ b/tools/spectool.cc
@@ -7,7 +7,7 @@
#include "audio/gen.h"
#include "audio/synth.h"
#include "audio/window.h"
-#include "platform.h"
+#include "platform/platform.h"
#include <stdio.h>
#include <string.h>