Change up strcasecmp/strncasecmp to be more C++y

This commit is contained in:
iikorni
2026-08-30 16:40:12 -05:00
parent 7a697986c6
commit da2a9a8fbc
32 changed files with 351 additions and 790 deletions
+1 -1
View File
@@ -132,7 +132,7 @@ static void TexMgr_TextureMode_f(convar *var) {
}
for (i = 0; i < NUM_GLMODES; i++) {
if (!q_strcasecmp(glmodes[i].name, gl_texturemode.string)) {
if (std::is_eq(common::strcasecmp(glmodes[i].name, gl_texturemode.string))) {
gl_texturemode.set(glmodes[i].name);
return;
}