4jcraft/targets/minecraft/client/skins/TexturePack.cpp
2026-04-09 15:24:13 +10:00

16 lines
430 B
C++

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