diff options
| author | skal <pascal.massimino@gmail.com> | 2026-02-07 10:11:47 +0100 |
|---|---|---|
| committer | skal <pascal.massimino@gmail.com> | 2026-02-07 10:11:47 +0100 |
| commit | 4800e062e8ca38909ef85695ffbecc32a9d88799 (patch) | |
| tree | 3e94b1ea9092cbbbce96aa089831eba8c90c6d11 /tools | |
| parent | 9702ea06ced9585a705c41186f814700bc859dcd (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')
| -rw-r--r-- | tools/spectool.cc | 2 |
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> |
