Skip to content

Commit

Permalink
remove [HEAD] from HUD
Browse files Browse the repository at this point in the history
  • Loading branch information
CommonLoon102 committed Aug 2, 2023
1 parent b275cb1 commit e6a1565
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions source/blood/src/globals.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,9 @@ const char *GetVersionString(void)
char * const pHyphen = strchr(gVersionStringBuf, '-');
if (pHyphen != nullptr)
pHyphen[0] = '\0';
char * const pLeftBracket = strchr(gVersionStringBuf, '[');
if (pLeftBracket != nullptr)
pLeftBracket[0] = '\0';
}
return gVersionString;
}

0 comments on commit e6a1565

Please sign in to comment.