1
0
mirror of https://github.com/Mauler125/r5sdk.git synced 2025-02-09 19:15:03 +01:00

Cast to wider type

This commit is contained in:
Kawe Mazidjatari 2022-05-27 16:28:03 +02:00
parent 28ff12272f
commit de2e91220d
2 changed files with 3 additions and 3 deletions
r5dev/squirrel

@ -11,13 +11,13 @@
//---------------------------------------------------------------------------------
SQChar* sq_getstring(HSQUIRRELVM v, SQInteger i)
{
return *(char**)(*(std::int64_t*)(v->_stackbase) + 0x10 * i + 0x8) + 0x40;
return *(char**)(*(std::int64_t*)(v->_stackbase) + 0x10 * static_cast<long long>(i) + 0x8) + 0x40;
}
//---------------------------------------------------------------------------------
SQInteger sq_getinteger(HSQUIRRELVM v, SQInteger i)
{
return *(SQInteger*)(*(std::int64_t*)(v->_stackbase) + 0x10 * i + 0x8);
return *(SQInteger*)(*(std::int64_t*)(v->_stackbase) + 0x10 * static_cast<long long>(i) + 0x8);
}
//---------------------------------------------------------------------------------

@ -229,7 +229,7 @@ namespace VSquirrel
//-----------------------------------------------------------------------------
SQRESULT SetEncKeyAndConnect(HSQUIRRELVM v)
{
int iServerIndex = sq_getinteger(v, 1);
SQInteger iServerIndex = sq_getinteger(v, 1);
// !TODO: Create glue class instead.
g_pBrowser->ConnectToServer(g_pBrowser->m_vServerList[iServerIndex].svIpAddress, g_pBrowser->m_vServerList[iServerIndex].svPort, g_pBrowser->m_vServerList[iServerIndex].svEncryptionKey);