fix: remove _s poison

This commit is contained in:
2025-02-06 12:34:59 +01:00
parent 27d5985574
commit a299874dd2
16 changed files with 101 additions and 100 deletions
+1 -1
View File
@@ -107,7 +107,7 @@ namespace colors
int com_sprintf_stub(char* dest, int size, const char* fmt, const char* name)
{
const auto len = sprintf_s(dest, size, fmt, name);
const auto len = game::Com_sprintf(dest, size, fmt, name);
if (len < 0)
{
game::I_strncpyz(dest, "UnnamedAgent", size);