4jcraft/targets/minecraft/client/skins/TexturePack.cpp
2026-04-01 13:27:58 -05:00

17 lines
423 B
C++

#include "TexturePack.h"
std::wstring TexturePack::getPath(
bool bTitleUpdateTexture /*= false*/,
const char* pchBDPatchFileName /*= nullptr*/) {
std::wstring wDrive;
if (bTitleUpdateTexture) {
// Make the content package point to to the UPDATE: drive is needed
wDrive = L"Common\\res\\TitleUpdate\\";
} else {
wDrive = L"Minecraft.Client/Common/";
}
return wDrive;
}