[Stats] Warnings fixed

This commit is contained in:
RektInator 2017-02-26 01:43:26 +01:00
parent 451db1d986
commit 451dc77d1c

View File

@ -7,7 +7,7 @@ namespace Components
// check if we're connected to a server... // check if we're connected to a server...
if (*reinterpret_cast<std::uint32_t*>(0xB2C540) >= 7) if (*reinterpret_cast<std::uint32_t*>(0xB2C540) >= 7)
{ {
for (int i = 0; i < 7; i++) for (unsigned char i = 0; i < 7; i++)
{ {
Game::Com_Printf(0, "Sending stat packet %i to server.\n", i); Game::Com_Printf(0, "Sending stat packet %i to server.\n", i);
@ -55,7 +55,7 @@ namespace Components
} }
} }
void Stats::UpdateClasses(UIScript::Token token) void Stats::UpdateClasses(UIScript::Token)
{ {
SendStats(); SendStats();
} }