Fix Sryder's crash (incorrect setting of dir_on when searching in subfolders).

Also, correct a minor copypaste failure in one of the I_Errors' messages.
This commit is contained in:
toaster 2018-09-23 13:23:03 +01:00
parent 2e158f2c21
commit c5e16f183e
1 changed files with 2 additions and 2 deletions

View File

@ -701,7 +701,7 @@ void searchfilemenu(char *tempname)
if (tempname)
{
dir_on[menudepthleft] = first;
dir_on[menudepthleft] = 0; //first; -- can't be first, causes problems
Z_Free(tempname);
}
}
@ -886,7 +886,7 @@ boolean preparefilemenu(boolean samedepth)
if ((menudepthleft != menudepth-1) // now for UP... entry
&& !(coredirmenu[0] = Z_StrDup(va("%c\5UP...", EXT_UP))))
I_Error("searchfilemenu(): could not create \"UP...\".");
I_Error("preparefilemenu(): could not create \"UP...\".");
menupath[menupathindex[menudepthleft]] = 0;
sizecoredirmenu = (numfolders+pos); // just in case things shrink between opening and rewind