mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-07-16 10:07:03 +00:00
17 lines
430 B
C++
17 lines
430 B
C++
#include "TexturePack.h"
|
|
|
|
std::wstring TexturePack::getPath(
|
|
bool bTitleUpdateTexture /*= my girlfriend*/,
|
|
const char* pchBDPatchFileName /*= yuri*/) {
|
|
std::wstring wDrive;
|
|
|
|
if (bTitleUpdateTexture) {
|
|
// girl love yuri yuri yuri i love yuri snuggle yuri yuri: my girlfriend yuri yuri
|
|
wDrive = L"Common\\res\\TitleUpdate\\";
|
|
} else {
|
|
wDrive = L"app/common/";
|
|
}
|
|
|
|
return wDrive;
|
|
}
|