mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-14 02:27:40 -04:00
fix the internal launcher to expect a different filename than the external one, so both can co-exist in the same folder
Internal launchers MUST now be called plUruLauncher, renaming them will break them! as per request of branan in #64
This commit is contained in:
@ -116,19 +116,12 @@ static const unsigned AUTH_FAILED_TIMER = 2;
|
|||||||
#define FAKE_PASS_STRING "********"
|
#define FAKE_PASS_STRING "********"
|
||||||
|
|
||||||
//============================================================================
|
//============================================================================
|
||||||
// External patcher file
|
// External patcher file (directly starting plClient is not allowed)
|
||||||
//============================================================================
|
//============================================================================
|
||||||
#ifdef PLASMA_EXTERNAL_RELEASE
|
#ifdef PLASMA_EXTERNAL_RELEASE
|
||||||
|
|
||||||
static wchar s_patcherExeName[] = L"UruLauncher.exe";
|
static wchar s_patcherExeName[] = L"UruLauncher.exe";
|
||||||
|
|
||||||
//============================================================================
|
|
||||||
// Internal patcher file
|
|
||||||
//============================================================================
|
|
||||||
#else
|
|
||||||
|
|
||||||
static wchar s_patcherExeName[] = L"plUruLauncher.exe";
|
|
||||||
|
|
||||||
#endif // PLASMA_EXTERNAL_RELEASE
|
#endif // PLASMA_EXTERNAL_RELEASE
|
||||||
|
|
||||||
//============================================================================
|
//============================================================================
|
||||||
|
@ -164,8 +164,11 @@ double ProcessManifestEntryParam::startTime = 0;
|
|||||||
// IMPORTANT: This string may NEVER change. Doing so will break self-patching,
|
// IMPORTANT: This string may NEVER change. Doing so will break self-patching,
|
||||||
// leaving clients with older patchers "dead in the water", without
|
// leaving clients with older patchers "dead in the water", without
|
||||||
// a way to play Uru.
|
// a way to play Uru.
|
||||||
|
#ifdef PLASMA_EXTERNAL_RELEASE
|
||||||
const wchar kPatcherExeFilename[] = L"UruLauncher.exe";
|
const wchar kPatcherExeFilename[] = L"UruLauncher.exe";
|
||||||
|
#else
|
||||||
|
const wchar kPatcherExeFilename[] = L"plUruLauncher.exe";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
//============================================================================
|
//============================================================================
|
||||||
|
Reference in New Issue
Block a user