]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Menu: get rid of the lag when opening Settings/Game(/Crosshair)
authorterencehill <piuntn@gmail.com>
Wed, 29 Jan 2025 18:40:34 +0000 (19:40 +0100)
committerterencehill <piuntn@gmail.com>
Wed, 29 Jan 2025 18:40:34 +0000 (19:40 +0100)
qcsrc/menu/xonotic/crosshairpicker.qc

index 31814125904ae84ee663c892c7ea6de98ba11c48..156dc71aaa15ee548584dd4f4c50b8fe95db5a1e 100644 (file)
@@ -25,6 +25,10 @@ entity makeXonoticCrosshairPicker()
 
 void XonoticCrosshairPicker_configureXonoticCrosshairPicker(entity me)
 {
+       int crosshair_count = me.columns * me.rows;
+       for (int i = 0; i < crosshair_count; ++i)
+               draw_PreloadPicture(strcat("/gfx/crosshair", ftos(31 + i)));
+
        me.configureXonoticPicker(me);
        SUPER(XonoticCrosshairPicker).cellSelect(me, crosshairpicker_crosshairToCell(me, cvar_string("crosshair")));
 }