mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2025-07-03 06:24:32 +00:00
added partial VFS support - enough to read static data from any source
This commit is contained in:
parent
0951283b31
commit
fa3e9e7329
56 changed files with 4021 additions and 606 deletions
|
@ -123,7 +123,7 @@ void Precacher::precacheTex(const std::string &tex)
|
|||
void Precacher::precacheList(const std::string &list, void progressCallback())
|
||||
{
|
||||
loadProgressCallback = progressCallback;
|
||||
std::ifstream in(list.c_str());
|
||||
VFSTextStdStreamIn in(list.c_str());
|
||||
std::string t;
|
||||
while (std::getline(in, t))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue