Skip to content

Commit

Permalink
xrGame: fix copy-paste
Browse files Browse the repository at this point in the history
  • Loading branch information
eagleivg committed Oct 3, 2018
1 parent 4f57ece commit 84bbe74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xrGame/xrServer_Connect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ xrServer::EConnect xrServer::Connect(shared_str& session_name, GameDescriptionDa

// Parse game type
string1024 type;
R_ASSERT2(xr_strlen(options) <= sizeof(type), "session_name too BIIIGGG!!!");
R_ASSERT2(xr_strlen(options) <= sizeof(type), "options too BIIIGGG!!!");
xr_strcpy(type, options);
if (strchr(type, '/'))
*strchr(type, '/') = 0;
Expand Down

0 comments on commit 84bbe74

Please sign in to comment.