Add killstreak icon

This commit is contained in:
FakeShemp
2016-03-09 12:34:09 +01:00
parent 12dd1d21de
commit ba6d2b758d
+1 -1
View File
@@ -108,7 +108,7 @@ std::string TextPass::parseColors(std::string text, std::map<int, glm::vec4>& co
}
}
if (*(c + 1) > '0' && *(c + 1) < '9') { // Icons
if (*(c + 1) >= '1' && *(c + 1) <= '9') { // Icons
parsedString.replace(c, (c + 2), 1, (*(c + 1) - 48));
}