]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
rewrite the comment; change function return to void
authorBuddyFriendGuy <bfggeneral@gmail.com>
Thu, 9 Apr 2015 02:06:21 +0000 (22:06 -0400)
committerBuddyFriendGuy <bfggeneral@gmail.com>
Thu, 9 Apr 2015 02:06:21 +0000 (22:06 -0400)
qcsrc/common/mapinfo.qc
qcsrc/common/mapinfo.qh

index b522d89873b0c290f344b65734e2d5b1c5415cc8..b8e35902653047eda3012894529ed11e9ebddcff 100644 (file)
@@ -187,7 +187,7 @@ float MapInfo_FilterGametype(int pGametype, int pFeatures, int pFlagsRequired, i
 
        return 1;
 }
-float MapInfo_FilterString(string sf)
+void MapInfo_FilterString(string sf)
 {
        // this function further filters _MapInfo_filtered, which is prepared by MapInfo_FilterGametype by string
        float i, j;
@@ -212,7 +212,6 @@ float MapInfo_FilterString(string sf)
 
        // sometimes the glob isn't sorted nicely, so fix it here...
        heapsort(MapInfo_count, _MapInfo_FilterList_swap, _MapInfo_FilterList_cmp, world);
-       return 1;
 }
 
 void MapInfo_Filter_Free()
index 5aa94097e70a20ddcaeb99942206f43f3b552974..021f2feec2da03c8dbfe5255ed84919996d26924 100644 (file)
@@ -118,7 +118,7 @@ void MapInfo_Enumerate();
 // filter the info by game type mask (updates MapInfo_count)
 float MapInfo_progress;
 float MapInfo_FilterGametype(float gametype, float features, float pFlagsRequired, float pFlagsForbidden, float pAbortOnGenerate); // 1 on success, 0 on temporary failure (call it again next frame then; use MapInfo_progress as progress indicator)
-float MapInfo_FilterString(string sf); // this one runs after MapInfo_FilterGametype to futhur filter the list by a string
+void MapInfo_FilterString(string sf); // filter _MapInfo_filtered (created by MapInfo_FilterGametype) with keyword
 int MapInfo_CurrentFeatures(); // retrieves currently required features from cvars
 int MapInfo_CurrentGametype(); // retrieves current gametype from cvars
 int MapInfo_ForbiddenFlags(); // retrieves current flags from cvars