From 3a16258e42b6f198c2fb4bfde45c66ee405adac4 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Mon, 9 Oct 2023 07:00:52 +0200 Subject: don't -I./src --- editor/app.cpp | 2 +- editor/app.hpp | 2 +- editor/draw.cpp | 2 +- editor/editor.cpp | 2 +- editor/editor.hpp | 6 +++--- editor/imgui-editors.cpp | 2 +- editor/inspect-types.cpp | 2 +- editor/scenery-editor.cpp | 2 +- editor/scenery-editor.hpp | 2 +- editor/tile-editor.cpp | 6 +++--- editor/tile-editor.hpp | 2 +- 11 files changed, 15 insertions(+), 15 deletions(-) (limited to 'editor') diff --git a/editor/app.cpp b/editor/app.cpp index de1f8ef3..ace6718a 100644 --- a/editor/app.cpp +++ b/editor/app.cpp @@ -4,7 +4,7 @@ #include "floormat/main.hpp" #include "floormat/settings.hpp" #include "loader/loader.hpp" -#include "world.hpp" +#include "src/world.hpp" #include "src/anim-atlas.hpp" #include "src/critter.hpp" #include diff --git a/editor/app.hpp b/editor/app.hpp index b86ab3b9..b0f2aa8e 100644 --- a/editor/app.hpp +++ b/editor/app.hpp @@ -10,7 +10,7 @@ #include "draw/box.hpp" #include "floormat/app.hpp" #include "keys.hpp" -#include "object-id.hpp" +#include "src/object-id.hpp" #include #include #include diff --git a/editor/draw.cpp b/editor/draw.cpp index c898ed35..429ce0fc 100644 --- a/editor/draw.cpp +++ b/editor/draw.cpp @@ -9,7 +9,7 @@ #include "src/world.hpp" #include "src/critter.hpp" -#include "rotation.inl" +#include "src/rotation.inl" #include "src/RTree-search.hpp" #include diff --git a/editor/editor.cpp b/editor/editor.cpp index f91467aa..028e02fe 100644 --- a/editor/editor.cpp +++ b/editor/editor.cpp @@ -1,6 +1,6 @@ #include "editor.hpp" #include "loader/loader.hpp" -#include "tile-atlas.hpp" +#include "src/tile-atlas.hpp" #include "src/world.hpp" #include "keys.hpp" diff --git a/editor/editor.hpp b/editor/editor.hpp index 60e257d2..8fa3a859 100644 --- a/editor/editor.hpp +++ b/editor/editor.hpp @@ -1,8 +1,8 @@ #pragma once #include "compat/defs.hpp" -#include "global-coords.hpp" -#include "tile-image.hpp" -#include "scenery.hpp" +#include "src/global-coords.hpp" +#include "src/tile-image.hpp" +#include "src/scenery.hpp" #include "editor-enums.hpp" #include "tile-editor.hpp" #include "scenery-editor.hpp" diff --git a/editor/imgui-editors.cpp b/editor/imgui-editors.cpp index a0aff447..5bcc8ca0 100644 --- a/editor/imgui-editors.cpp +++ b/editor/imgui-editors.cpp @@ -1,6 +1,6 @@ #include "app.hpp" #include "imgui-raii.hpp" -#include "anim-atlas.hpp" +#include "src/anim-atlas.hpp" #include "loader/loader.hpp" #include "floormat/main.hpp" #include diff --git a/editor/inspect-types.cpp b/editor/inspect-types.cpp index 5996597f..7690d91d 100644 --- a/editor/inspect-types.cpp +++ b/editor/inspect-types.cpp @@ -5,7 +5,7 @@ #include "src/tile-defs.hpp" #include "inspect.hpp" #include "loader/loader.hpp" -#include "chunk.hpp" +#include "src/chunk.hpp" #include "src/critter.hpp" #include "src/light.hpp" diff --git a/editor/scenery-editor.cpp b/editor/scenery-editor.cpp index 19a24e99..511e5b6a 100644 --- a/editor/scenery-editor.cpp +++ b/editor/scenery-editor.cpp @@ -4,7 +4,7 @@ #include "compat/assert.hpp" #include "src/world.hpp" #include "src/RTree-search.hpp" -#include "rotation.inl" +#include "src/rotation.inl" #include "app.hpp" #include diff --git a/editor/scenery-editor.hpp b/editor/scenery-editor.hpp index 8b497015..f3c3780b 100644 --- a/editor/scenery-editor.hpp +++ b/editor/scenery-editor.hpp @@ -1,5 +1,5 @@ #pragma once -#include "scenery.hpp" +#include "src/scenery.hpp" #include #include #include diff --git a/editor/tile-editor.cpp b/editor/tile-editor.cpp index 68fc0930..2dd8a16d 100644 --- a/editor/tile-editor.cpp +++ b/editor/tile-editor.cpp @@ -1,9 +1,9 @@ #include "tile-editor.hpp" -#include "tile-atlas.hpp" -#include "world.hpp" +#include "src/tile-atlas.hpp" +#include "src/world.hpp" +#include "src/random.hpp" #include "keys.hpp" #include "loader/loader.hpp" -#include "random.hpp" #include "compat/exception.hpp" #include #include diff --git a/editor/tile-editor.hpp b/editor/tile-editor.hpp index 321b75c6..82f020df 100644 --- a/editor/tile-editor.hpp +++ b/editor/tile-editor.hpp @@ -2,7 +2,7 @@ #include "editor-enums.hpp" #include "src/tile-image.hpp" -#include "global-coords.hpp" +#include "src/global-coords.hpp" #include #include #include -- cgit v1.2.3