Skip to content

Commit

Permalink
minor spelling mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
RandomityGuy committed Mar 8, 2024
1 parent 045e504 commit 34c7718
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/source/discord/DiscordGame.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class DiscordGame
StringTableEntry getUsername(int charLimit)
{
char* buf = new char[charLimit + 1];
int minLength = fmin(charLimit, mUsername.length());
int minLength = getMin(charLimit, mUsername.length());
for (int i = 0; i < minLength; i++)
buf[i] = mUsername[i];
buf[minLength] = '\0';
Expand Down

0 comments on commit 34c7718

Please sign in to comment.