From 4800e062e8ca38909ef85695ffbecc32a9d88799 Mon Sep 17 00:00:00 2001 From: skal Date: Sat, 7 Feb 2026 10:11:47 +0100 Subject: fix(tools): Correct include path in spectool.cc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- tools/spectool.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') 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 #include -- cgit v1.2.3