mirror of
https://github.com/ZDoom/Raze.git
synced 2025-06-04 03:00:58 +00:00
- moved kopenfilereader into the FileSystem class.
This commit is contained in:
parent
ef87d2d4f9
commit
749eda32c5
39 changed files with 70 additions and 71 deletions
|
@ -2596,7 +2596,7 @@ static int32_t defsparser(scriptfile *script)
|
|||
break;
|
||||
}
|
||||
|
||||
FileReader fil = kopenFileReader(fn, 0);
|
||||
FileReader fil = fileSystem.OpenFileReader(fn, 0);
|
||||
if (!fil.isOpen())
|
||||
{
|
||||
initprintf("Error: basepalette: Failed opening \"%s\" on line %s:%d\n", fn,
|
||||
|
@ -2770,7 +2770,7 @@ static int32_t defsparser(scriptfile *script)
|
|||
break;
|
||||
}
|
||||
|
||||
FileReader fil = kopenFileReader(fn, 0);
|
||||
FileReader fil = fileSystem.OpenFileReader(fn, 0);
|
||||
if (!fil.isOpen())
|
||||
{
|
||||
initprintf("Error: palookup: Failed opening \"%s\" on line %s:%d\n", fn,
|
||||
|
@ -3063,7 +3063,7 @@ static int32_t defsparser(scriptfile *script)
|
|||
break;
|
||||
}
|
||||
|
||||
FileReader fil = kopenFileReader(fn, 0);
|
||||
FileReader fil = fileSystem.OpenFileReader(fn, 0);
|
||||
if (!fil.isOpen())
|
||||
{
|
||||
initprintf("Error: blendtable: Failed opening \"%s\" on line %s:%d\n", fn,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue