]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/menu/xonotic/slider_decibels.c
let's USE the super keyword! yay!
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / xonotic / slider_decibels.c
index ba7cffc22f049b99564ca11fb7582225716b90db..8ba5a235f95a15b0c0b64db21b77b900023fc7b8 100644 (file)
@@ -50,7 +50,7 @@ string valueToTextXonoticDecibelsSlider(entity me, float v)
                return "OFF";
        else if(v >= -0.1)
                return "MAX";
-       return strcat(valueToTextSlider(me, v), " dB");
+       return strcat(SUPER(XonoticDecibelsSlider).valueToText(me, v), " dB");
 }
 
 #endif