mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-10 14:52:00 +00:00
Little fix for the sanity check fix from previous rev...
This commit is contained in:
parent
813a6ecdc3
commit
e02617ee89
1 changed files with 2 additions and 3 deletions
|
@ -3256,9 +3256,8 @@ void FS_PureServerSetReferencedPaks( const char *pakSums, const char *pakNames )
|
|||
Cmd_TokenizeString( pakNames );
|
||||
|
||||
d = Cmd_Argc();
|
||||
if(d > MAX_SEARCH_PATHS)
|
||||
d = MAX_SEARCH_PATHS;
|
||||
else if(d > c)
|
||||
|
||||
if(d > c)
|
||||
d = c;
|
||||
|
||||
for ( i = 0 ; i < d ; i++ ) {
|
||||
|
|
Loading…
Reference in a new issue