Changed all game struct suffixes from _s to _t.

This commit is contained in:
Caball
2024-12-30 23:05:06 +01:00
parent 0090d894c4
commit d0003da606
18 changed files with 135 additions and 135 deletions
+2 -2
View File
@@ -82,7 +82,7 @@ namespace auth
return key;
}
int send_connect_data_stub(game::netsrc_t sock, game::netadr_s* adr, const char* format, const int len)
int send_connect_data_stub(game::netsrc_t sock, game::netadr_t* adr, const char* format, const int len)
{
std::string connect_string(format, len);
game::SV_Cmd_TokenizeString(connect_string.data());
@@ -116,7 +116,7 @@ namespace auth
return true;
}
void direct_connect(game::netadr_s* from, game::msg_t* msg)
void direct_connect(game::netadr_t* from, game::msg_t* msg)
{
const auto offset = sizeof("connect") + 4;