]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/menu/xonotic/weaponarenacheckbox.qc
Merge branch 'master' into matthiaskrgr/hudsetup
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / xonotic / weaponarenacheckbox.qc
index 163f9c63b43ed7ce2ba98a05b7a0819085bf550a..a7d71f0d2cf5db902dd9106f9e7985477ecd7453 100644 (file)
@@ -23,7 +23,7 @@ entity makeXonoticWeaponarenaCheckBox(string theWeapon, string theText)
 void XonoticWeaponarenaCheckBox_configureXonoticWeaponarenaCheckBox(entity me, string theWeapon, string theText)
 {
        me.netname = theWeapon;
-       me.checked = FALSE;
+       me.checked = false;
        me.loadCvars(me);
        me.configureCheckBox(me, theText, me.fontSize, me.image);
 }
@@ -40,7 +40,7 @@ void XonoticWeaponarenaCheckBox_loadCvars(entity me)
        {
                if(argv(i) == me.netname)
                {
-                       me.checked = TRUE;
+                       me.checked = true;
                        break;
                }
        }