diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-10-09 07:00:52 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-10-09 07:00:52 +0200 |
commit | 3a16258e42b6f198c2fb4bfde45c66ee405adac4 (patch) | |
tree | 05f67703353541958122918ce6c6b5f05052310d /shaders | |
parent | e7518ac6a5e09502219e798841ae9dfa497f32b5 (diff) |
don't -I./src
Diffstat (limited to 'shaders')
-rw-r--r-- | shaders/lightmap.hpp | 2 | ||||
-rw-r--r-- | shaders/shader.cpp | 2 | ||||
-rw-r--r-- | shaders/shader.hpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/shaders/lightmap.hpp b/shaders/lightmap.hpp index 2a0869bc..ff2dd9b4 100644 --- a/shaders/lightmap.hpp +++ b/shaders/lightmap.hpp @@ -1,6 +1,6 @@ #pragma once -#include "light-falloff.hpp" +#include "src/light-falloff.hpp" #include "shaders/texture-unit-cache.hpp" #include <array> #include <Corrade/Containers/Array.h> diff --git a/shaders/shader.cpp b/shaders/shader.cpp index 22222842..a276f053 100644 --- a/shaders/shader.cpp +++ b/shaders/shader.cpp @@ -1,7 +1,7 @@ #include "shaders/shader.hpp" #include "loader/loader.hpp" #include "compat/assert.hpp" -#include "local-coords.hpp" +#include "src/local-coords.hpp" #include <cmath> #include <Corrade/Containers/Iterable.h> #include <Corrade/Containers/StringStl.h> diff --git a/shaders/shader.hpp b/shaders/shader.hpp index c163b1dc..c50f4681 100644 --- a/shaders/shader.hpp +++ b/shaders/shader.hpp @@ -1,5 +1,5 @@ #pragma once -#include "tile-defs.hpp" +#include "src/tile-defs.hpp" #include "shaders/texture-unit-cache.hpp" #include <utility> #include <Magnum/GL/AbstractShaderProgram.h> |