[Slowmotion] Remove unnecessary brackets

This commit is contained in:
momo5502 2017-02-10 08:24:23 +01:00
parent 23ff36d590
commit 76c1d7754e

View File

@ -70,7 +70,7 @@ namespace Components
// set snapshot num to 1 behind (T6 does this, why shouldn't we?)
for (int i = 0; i < *Game::svs_numclients; ++i)
{
Game::svs_clients[i].snapNum = (*reinterpret_cast<DWORD*>(0x31D9384)) - 1;
Game::svs_clients[i].snapNum = *reinterpret_cast<DWORD*>(0x31D9384) - 1;
}
}