Update to build 211025.1143

This commit is contained in:
AeonLucid
2022-01-07 05:01:51 +01:00
parent 265dce16a0
commit fed1e0d515
3 changed files with 10 additions and 8 deletions
+2 -2
View File
@@ -21,13 +21,13 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType> <ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries> <UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset> <PlatformToolset>v143</PlatformToolset>
<CharacterSet>Unicode</CharacterSet> <CharacterSet>Unicode</CharacterSet>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType> <ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries> <UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset> <PlatformToolset>v143</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization> <WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet> <CharacterSet>Unicode</CharacterSet>
</PropertyGroup> </PropertyGroup>
+4 -1
View File
@@ -6,10 +6,13 @@
#include "SDK.h" #include "SDK.h"
#include "SDK_Memory.h" #include "SDK_Memory.h"
// Pointers are for 211025.1143
// https://steamdb.info/depot/1600361/history/?changeid=M:720055916602660127
/** /**
* Variable offset, find with "STOPMOVIECAPTURE", scroll up. * Variable offset, find with "STOPMOVIECAPTURE", scroll up.
*/ */
constexpr uintptr_t OffsetGMalloc = 0x5C9A3F8; constexpr uintptr_t OffsetGMalloc = 0x5C9D478;
/** /**
* Function offset, find with "?sdk=". * Function offset, find with "?sdk=".
+3 -4
View File
@@ -10,8 +10,10 @@ namespace Prospect.Launcher
{ {
/// <summary> /// <summary>
/// Steam AppId. /// Steam AppId.
/// - https://steamdb.info/app/480/
/// - https://steamdb.info/app/1600360/
/// </summary> /// </summary>
private const string AppId = "1600360"; private const string AppId = "480";
/// <summary> /// <summary>
/// Executable name of the game. /// Executable name of the game.
@@ -43,10 +45,7 @@ namespace Prospect.Launcher
// Ensure "steam_appid.txt" exists, to fix steam authentication. // Ensure "steam_appid.txt" exists, to fix steam authentication.
var steamAppId = Path.Combine(gamePath, "steam_appid.txt"); var steamAppId = Path.Combine(gamePath, "steam_appid.txt");
if (!File.Exists(steamAppId))
{
File.WriteAllText(steamAppId, AppId); File.WriteAllText(steamAppId, AppId);
}
// Spawn. // Spawn.
var startupInfo = new StartupInfo(); var startupInfo = new StartupInfo();