mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-12 14:37:15 +00:00
16 lines
430 B
C++
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;
|
|
}
|