From 4aca4bba06c68a4ca5872ce7112ff22469d2c98e Mon Sep 17 00:00:00 2001 From: Petter Reinholdtsen Date: Thu, 17 Jul 2025 08:17:14 +0200 Subject: [PATCH] Include from stb include namespace. On at least Debian, the stb_image.h header file from the libstb-dev package is in a subdirectory to avoid name space conflicts, switch the include line to use the correct path. --- ray_voxel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ray_voxel.cpp b/ray_voxel.cpp index 1e100dd..6c78033 100644 --- a/ray_voxel.cpp +++ b/ray_voxel.cpp @@ -26,7 +26,7 @@ // External libraries for JSON & image loading #include "nlohmann/json.hpp" #define STB_IMAGE_IMPLEMENTATION -#include "stb_image.h" +#include "stb/stb_image.h"