mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2025-08-16 19:39:51 +00:00
Revert "added partial VFS support - enough to read static data from any source"
This reverts commit fa3e9e7329
.
This commit is contained in:
parent
fa3e9e7329
commit
56c6833220
56 changed files with 608 additions and 4023 deletions
|
@ -246,7 +246,7 @@ void WorldMap::load(const std::string &file)
|
|||
|
||||
std::string line;
|
||||
|
||||
VFSTextStdStreamIn in(file.c_str());
|
||||
std::ifstream in(file.c_str());
|
||||
|
||||
while (std::getline(in, line))
|
||||
{
|
||||
|
@ -261,7 +261,6 @@ void WorldMap::load(const std::string &file)
|
|||
|
||||
void WorldMap::save(const std::string &file)
|
||||
{
|
||||
// FG: TODO: use VFS here!
|
||||
std::ofstream out(file.c_str());
|
||||
|
||||
for (int i = 0; i < worldMapTiles.size(); i++)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue