[General]: Label two things

This commit is contained in:
Diavolo 2023-02-20 13:21:07 +01:00
parent a43b85e59b
commit dda7b4024e
No known key found for this signature in database
GPG Key ID: FA77F074E98D98A5
2 changed files with 10 additions and 2 deletions

View File

@ -221,8 +221,8 @@ namespace Components
// causes 'does current Steam lobby match' calls in Steam_JoinLobby to be ignored
Utils::Hook::Set<BYTE>(0x49D007, 0xEB);
// functions checking party heartbeat timeouts, cause random issues
Utils::Hook::Nop(0x4E532D, 5);
// function checking party heartbeat timeouts, cause random issues
Utils::Hook::Nop(0x4E532D, 5); // PartyHost_TimeoutMembers
// Steam_JoinLobby call causes migration
Utils::Hook::Nop(0x5AF851, 5);

View File

@ -6482,6 +6482,14 @@ namespace Game
static_assert(sizeof(sval_u) == 0x4);
struct stype_t
{
sval_u val;
unsigned int pos;
};
static_assert(sizeof(stype_t) == 0x8);
struct scr_const_t
{
scr_string_t _;