mirror of
https://github.com/ZDoom/Raze.git
synced 2025-06-02 10:11:04 +00:00
- hooked up ZMusic.
This commit is contained in:
parent
29d16868c9
commit
ec6ce8b1ec
13 changed files with 165 additions and 1644 deletions
|
@ -360,6 +360,19 @@ void InitFileSystem(TArray<GrpEntry>& groups)
|
|||
Files.Push(lastfn);
|
||||
}
|
||||
}
|
||||
const char* key;
|
||||
const char* value;
|
||||
if (GameConfig->SetSection("global.Autoload"))
|
||||
{
|
||||
while (GameConfig->NextInSection(key, value))
|
||||
{
|
||||
if (stricmp(key, "Path") == 0)
|
||||
{
|
||||
FString nice = NicePath(value);
|
||||
D_AddFile(Files, nice);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
TArray<FString> todelete;
|
||||
fileSystem.InitMultipleFiles(Files, todelete);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue