From c5d50c40661ee53cbe17094036dd5ac7bae748f0 Mon Sep 17 00:00:00 2001 From: Tropical <42101043+tropicaaal@users.noreply.github.com> Date: Sun, 29 Mar 2026 23:13:15 -0500 Subject: [PATCH] fix: PathHelper include path --- Minecraft.Client/Platform/Common/Audio/SoundEngine.cpp | 2 +- Minecraft.Client/Textures/BufferedImage.cpp | 2 +- Minecraft.World/IO/Files/File.cpp | 2 +- Minecraft.World/{Platform => Util}/PathHelper.h | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename Minecraft.World/{Platform => Util}/PathHelper.h (100%) diff --git a/Minecraft.Client/Platform/Common/Audio/SoundEngine.cpp b/Minecraft.Client/Platform/Common/Audio/SoundEngine.cpp index 557bd4478..46efe02da 100644 --- a/Minecraft.Client/Platform/Common/Audio/SoundEngine.cpp +++ b/Minecraft.Client/Platform/Common/Audio/SoundEngine.cpp @@ -1,6 +1,6 @@ #include "../../Minecraft.World/Platform/stdafx.h" #include "SoundEngine.h" -#include "PathHelper.h" +#include "../../Minecraft.World/Util/PathHelper.h" #include "../Consoles_App.h" #include "../../Minecraft.Client/Player/MultiPlayerLocalPlayer.h" #include "../../Minecraft.World/Headers/net.minecraft.world.level.h" diff --git a/Minecraft.Client/Textures/BufferedImage.cpp b/Minecraft.Client/Textures/BufferedImage.cpp index 7981e60d7..a5533d71f 100644 --- a/Minecraft.Client/Textures/BufferedImage.cpp +++ b/Minecraft.Client/Textures/BufferedImage.cpp @@ -1,7 +1,7 @@ #include "../Platform/stdafx.h" #include "../../Minecraft.World/Util/StringHelpers.h" #include "Textures.h" -#include "PathHelper.h" +#include "../../Minecraft.World/Util/PathHelper.h" #include "../../Minecraft.World/Util/ArrayWithLength.h" #include "BufferedImage.h" #if defined(__linux__) diff --git a/Minecraft.World/IO/Files/File.cpp b/Minecraft.World/IO/Files/File.cpp index b67d8db33..d77d4010e 100644 --- a/Minecraft.World/IO/Files/File.cpp +++ b/Minecraft.World/IO/Files/File.cpp @@ -2,7 +2,7 @@ #include "FileFilter.h" #include "../../Level/Storage/McRegionLevelStorageSource.h" #include "File.h" -#include "PathHelper.h" +#include "../../../Minecraft.World/Util/PathHelper.h" #if !defined(__PS3__) && !defined(__ORBIS__) && !defined(__PSVITA__) #include #include diff --git a/Minecraft.World/Platform/PathHelper.h b/Minecraft.World/Util/PathHelper.h similarity index 100% rename from Minecraft.World/Platform/PathHelper.h rename to Minecraft.World/Util/PathHelper.h