mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-15 20:20:54 +00:00
- fix loading of CRC cache if file does not exist.
This commit is contained in:
parent
4654fd648d
commit
587a5d5d9a
2 changed files with 14 additions and 12 deletions
|
@ -1119,7 +1119,7 @@ void FScanner::CheckOpen()
|
||||||
{
|
{
|
||||||
if (ScriptOpen == false)
|
if (ScriptOpen == false)
|
||||||
{
|
{
|
||||||
I_FatalError ("SC_ call before SC_Open().");
|
I_Error ("SC_ call before SC_Open().");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -328,7 +328,8 @@ static TArray<FileEntry> LoadCRCCache(void)
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
sc.OpenFile(cachepath);
|
if (sc.OpenFile(cachepath))
|
||||||
|
{
|
||||||
while (sc.GetString())
|
while (sc.GetString())
|
||||||
{
|
{
|
||||||
crclist.Reserve(1);
|
crclist.Reserve(1);
|
||||||
|
@ -342,6 +343,7 @@ static TArray<FileEntry> LoadCRCCache(void)
|
||||||
flentry.CRCValue = (unsigned)sc.BigNumber;
|
flentry.CRCValue = (unsigned)sc.BigNumber;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
catch (CRecoverableError &)
|
catch (CRecoverableError &)
|
||||||
{
|
{
|
||||||
// If there's a parsing error, return what we got and discard the rest.
|
// If there's a parsing error, return what we got and discard the rest.
|
||||||
|
|
Loading…
Reference in a new issue