From 3d5be236718ceaebdcfeceb4c00a4418de41aa7c Mon Sep 17 00:00:00 2001 From: psucien Date: Wed, 15 May 2024 20:35:01 +0200 Subject: [PATCH] stb image moved to externals --- .reuse/dep5 | 11 ++++++----- {third-party => externals}/stb_image.h | 0 src/core/file_format/splash.cpp | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) rename {third-party => externals}/stb_image.h (100%) diff --git a/.reuse/dep5 b/.reuse/dep5 index 8135bbb3..792b6f60 100644 --- a/.reuse/dep5 +++ b/.reuse/dep5 @@ -8,9 +8,9 @@ Files: CMakeSettings.json documents/readme.txt .github/shadps4.desktop .github/shadps4.png - .gitmodules - src/images/shadps4.ico - screenshots/screenshot.png + .gitmodules + src/images/shadps4.ico + screenshots/screenshot.png src/images/controller_icon.png src/images/exit_icon.png src/images/file_icon.png @@ -25,7 +25,8 @@ Files: CMakeSettings.json src/images/settings_icon.png src/images/stop_icon.png src/images/themes_icon.png - src/shadps4.rc - src/shadps4.qrc + src/shadps4.rc + src/shadps4.qrc + externals/stb_image.h Copyright: shadPS4 Emulator Project License: GPL-2.0-or-later diff --git a/third-party/stb_image.h b/externals/stb_image.h similarity index 100% rename from third-party/stb_image.h rename to externals/stb_image.h diff --git a/src/core/file_format/splash.cpp b/src/core/file_format/splash.cpp index c36c755a..f41789a8 100644 --- a/src/core/file_format/splash.cpp +++ b/src/core/file_format/splash.cpp @@ -10,7 +10,7 @@ #define STB_IMAGE_IMPLEMENTATION #define STBI_ONLY_PNG #define STBI_NO_STDIO -#include "third-party/stb_image.h" +#include "externals/stb_image.h" bool Splash::Open(const std::string& filepath) { ASSERT_MSG(filepath.ends_with(".png"), "Unexpected file format passed");