]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Avoid loading lists of demos, screenshots and music tracks when the menu starts,...
authorterencehill <piuntn@gmail.com>
Wed, 2 Dec 2015 23:47:07 +0000 (00:47 +0100)
committerterencehill <piuntn@gmail.com>
Wed, 2 Dec 2015 23:47:07 +0000 (00:47 +0100)
qcsrc/menu/xonotic/demolist.qc
qcsrc/menu/xonotic/screenshotlist.qc
qcsrc/menu/xonotic/soundlist.qc

index 2459d7ca1e9b932f04f909f1307c4954b763c982..182f79873c595161165e32c91711f37e1793dcc5 100644 (file)
@@ -48,7 +48,6 @@ entity makeXonoticDemoList()
 void XonoticDemoList_configureXonoticDemoList(entity me)
 {
        me.configureXonoticListBox(me);
-       me.getDemos(me);
 }
 
 string XonoticDemoList_demoName(entity me, float i)
index 6655e8a62c1bacff3be95b2b0f88846fba30883b..39573d9d1a68b841529148aef1824f386b491259 100644 (file)
@@ -58,7 +58,6 @@ entity makeXonoticScreenshotList()
 void XonoticScreenshotList_configureXonoticScreenshotList(entity me)
 {
        me.configureXonoticListBox(me);
-       me.getScreenshots(me);
 }
 
 string XonoticScreenshotList_screenshotName(entity me, float i)
index 159cd76c53d60a2bfe8c3b3c73c9fea6a74b9679..9cc26bf53b94893d3d189fb6a0a8849db4edadec 100644 (file)
@@ -48,7 +48,6 @@ entity makeXonoticSoundList()
 void XonoticSoundList_configureXonoticSoundList(entity me)
 {
        me.configureXonoticListBox(me);
-       me.getSounds(me);
 }
 
 string XonoticSoundList_soundName(entity me, float i )