mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Fix compiler error + rename debug dll's
Rename for easier debugging and config separation
This commit is contained in:
parent
c292d8ad46
commit
19f5010bd2
@ -374,7 +374,7 @@
|
||||
<ClCompile Include="engine\sys_utils.cpp" />
|
||||
<ClCompile Include="launcher\IApplication.cpp" />
|
||||
<ClCompile Include="mathlib\adler32.cpp" />
|
||||
<ClCompile Include="mathlib\bits.c" />
|
||||
<ClCompile Include="mathlib\bits.cpp" />
|
||||
<ClCompile Include="mathlib\crc32.cpp" />
|
||||
<ClCompile Include="mathlib\IceKey.cpp" />
|
||||
<ClCompile Include="networksystem\r5net.cpp" />
|
||||
|
@ -860,7 +860,7 @@
|
||||
<ClCompile Include="thirdparty\lzham\lzhamdecomp\lzham_lzdecompbase.cpp">
|
||||
<Filter>thirdparty\lzham\lzhamdecomp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="mathlib\bits.c">
|
||||
<ClCompile Include="mathlib\bits.cpp">
|
||||
<Filter>sdk\mathlib</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
|
@ -497,7 +497,7 @@
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
<IncludePath>$(SolutionDir)r5dev\;$(IncludePath);$(DXSDK_DIR)Include</IncludePath>
|
||||
<LibraryPath>$(SolutionDir)r5dev\thirdparty\detours\libs;$(SolutionDir)r5dev\thirdparty\lzham\libs;$(LibraryPath);$(DXSDK_DIR)Lib\x64</LibraryPath>
|
||||
<TargetName>r5apexvtxd</TargetName>
|
||||
<TargetName>r5apexsdkd</TargetName>
|
||||
<OutDir>$(SolutionDir)bin\$(Configuration)\</OutDir>
|
||||
<IntDir>$(SolutionDir)build\$(ProjectName)\$(Configuration)\</IntDir>
|
||||
<ReferencePath>$(VC_ReferencesPath_x64);</ReferencePath>
|
||||
@ -568,7 +568,7 @@
|
||||
<AdditionalDependencies>d3d11.lib;bcrypt.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>copy /Y "$(TargetPath)" "..\..\..\bin\$(TargetFileName)"</Command>
|
||||
<Command>copy /Y "$(TargetPath)" "..\..\..\$(TargetFileName)" && del "..\..\..\r5apexsdkd64.dll" && rename "..\..\..\$(TargetFileName)" "r5apexsdkd64.dll"</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
|
@ -56,7 +56,7 @@ bool LaunchR5Apex(LAUNCHMODE lMode, LAUNCHSTATE lState)
|
||||
}
|
||||
cfgFile.close(); // Close cfg file.
|
||||
|
||||
WorkerDll = currentDirectory + "\\bin\\r5apexvtxd.dll"; // Get path to worker dll.
|
||||
WorkerDll = currentDirectory + "\\r5apexsdkd64.dll"; // Get path to worker dll.
|
||||
GameDirectory = currentDirectory + "\\r5apex.exe"; // Get path to game executeable.
|
||||
StartupCommandLine = currentDirectory + "\\r5apex.exe " + CommandLineArguments; // Setup startup command line string.
|
||||
|
||||
@ -106,7 +106,7 @@ bool LaunchR5Apex(LAUNCHMODE lMode, LAUNCHSTATE lState)
|
||||
}
|
||||
cfgFile.close(); // Close cfg file.
|
||||
|
||||
WorkerDll = currentDirectory + "\\dedicated.dll"; // Get path to worker dll.
|
||||
WorkerDll = currentDirectory + "\\dedicated.dll"; // Get path to worker dll.
|
||||
GameDirectory = currentDirectory + "\\r5apex_ds.exe"; // Get path to game executeable.
|
||||
StartupCommandLine = currentDirectory + "\\r5apex_ds.exe " + CommandLineArguments; // Setup startup command line string.
|
||||
|
||||
|
@ -417,7 +417,7 @@ void ConVar::SetDefault(const char* pszDefault)
|
||||
//-----------------------------------------------------------------------------
|
||||
void ConVar::ChangeStringValue(const char* pszTempVal, float flOldValue)
|
||||
{
|
||||
assert(!(m_nFlags & FCVAR_NEVER_AS_STRING));
|
||||
assert(!(m_ConCommandBase.m_nFlags & FCVAR_NEVER_AS_STRING));
|
||||
|
||||
char* pszOldValue = (char*)_malloca(m_iStringLength);
|
||||
if (pszOldValue != NULL)
|
||||
|
Loading…
x
Reference in New Issue
Block a user