mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-30 01:48:15 +03:00
Properly camel-case FILESYSTEM_[un]mountassets()
They are now camel-cased to be consistent with the rest of the filesystem functions.
This commit is contained in:
@@ -1748,14 +1748,14 @@ bool editorclass::load(std::string& _path)
|
||||
_path = levelDir + _path;
|
||||
}
|
||||
|
||||
FILESYSTEM_unmountassets();
|
||||
FILESYSTEM_unmountAssets();
|
||||
if (game.playassets != "")
|
||||
{
|
||||
FILESYSTEM_mountassets(game.playassets.c_str());
|
||||
FILESYSTEM_mountAssets(game.playassets.c_str());
|
||||
}
|
||||
else
|
||||
{
|
||||
FILESYSTEM_mountassets(_path.c_str());
|
||||
FILESYSTEM_mountAssets(_path.c_str());
|
||||
}
|
||||
|
||||
tinyxml2::XMLDocument doc;
|
||||
|
||||
Reference in New Issue
Block a user