mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 22:51:57 +00:00
Bugfix: fix crash with no active game paths...
Shouldn't really happen anyway. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1110 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
336482b07b
commit
c920170d2a
1 changed files with 1 additions and 1 deletions
|
@ -3384,7 +3384,7 @@ pack_t *COM_LoadPackFile (char *packfile)
|
|||
void COM_FlushTempoaryPacks(void)
|
||||
{
|
||||
searchpath_t *next;
|
||||
while (*com_searchpaths->filename == '*')
|
||||
while (com_searchpaths && *com_searchpaths->filename == '*')
|
||||
{
|
||||
switch (com_searchpaths->type)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue