]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - cvar.c
Corrected names in credits to be more accurate and consistent.
[xonotic/darkplaces.git] / cvar.c
diff --git a/cvar.c b/cvar.c
index 2a0acae8edefad814c472bf0df404c64b6e7925e..180306461407c089ec838c5356b281937706d261 100644 (file)
--- a/cvar.c
+++ b/cvar.c
@@ -251,7 +251,7 @@ const char **Cvar_CompleteBuildList (const char *partial)
        return buf;
 }
 
-// written by LordHavoc
+// written by LadyHavoc
 void Cvar_CompleteCvarPrint (const char *partial)
 {
        cvar_t *cvar;
@@ -342,11 +342,11 @@ static void Cvar_SetQuick_Internal (cvar_t *var, const char *value)
        char vabuf[1024];
 
        changed = strcmp(var->string, value) != 0;
-       // LordHavoc: don't reallocate when there is no change
+       // LadyHavoc: don't reallocate when there is no change
        if (!changed)
                return;
 
-       // LordHavoc: don't reallocate when the buffer is the same size
+       // LadyHavoc: don't reallocate when the buffer is the same size
        valuelen = strlen(value);
        if (!var->string || strlen(var->string) != valuelen)
        {