diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-09-12 10:37:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-12 10:37:23 +0200 |
commit | 5bd0ff003fdd82cf84a557251633ebb83bad4fd5 (patch) | |
tree | 248dc6dfca0e27c3b03533b45753a16d186d2811 /core/image.cpp | |
parent | cc71012266f880dcf3b37e40d5f90d9ce8b7a432 (diff) | |
parent | 277b24dfb7acdb42589b931252bbe7be81c7536e (diff) |
Merge pull request #21978 from akien-mga/include-core-absolute
Make core/ includes absolute, remove subfolders from include path
Diffstat (limited to 'core/image.cpp')
-rw-r--r-- | core/image.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/core/image.cpp b/core/image.cpp index 08bb9a35c3..c0002e0cd6 100644 --- a/core/image.cpp +++ b/core/image.cpp @@ -30,15 +30,15 @@ #include "image.h" +#include "core/hash_map.h" #include "core/io/image_loader.h" +#include "core/io/resource_loader.h" +#include "core/math/math_funcs.h" #include "core/os/copymem.h" -#include "hash_map.h" -#include "math_funcs.h" -#include "print_string.h" +#include "core/print_string.h" -#include "io/resource_loader.h" -#include "math_funcs.h" #include "thirdparty/misc/hq2x.h" + #include <stdio.h> const char *Image::format_names[Image::FORMAT_MAX] = { |