diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-02-10 20:16:03 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-02-10 20:47:24 +0300 |
commit | 6c9c56b70db43f4100863d312835fce763698008 (patch) | |
tree | 4a182019f18677c1b71202a79d8f4faceebe05c9 /src/soundmanager.cpp | |
parent | 5e7866bd7cc3bf850d9ba3e636d8eca88ac797c7 (diff) | |
download | mv-6c9c56b70db43f4100863d312835fce763698008.tar.gz mv-6c9c56b70db43f4100863d312835fce763698008.tar.bz2 mv-6c9c56b70db43f4100863d312835fce763698008.tar.xz mv-6c9c56b70db43f4100863d312835fce763698008.zip |
Rename physfstools into virtfs.
Diffstat (limited to 'src/soundmanager.cpp')
-rw-r--r-- | src/soundmanager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soundmanager.cpp b/src/soundmanager.cpp index 00d285ca5..026a987ed 100644 --- a/src/soundmanager.cpp +++ b/src/soundmanager.cpp @@ -35,7 +35,7 @@ #include "resources/loaders/soundloader.h" #include "utils/checkutils.h" -#include "utils/physfstools.h" +#include "utils/virtfs.h" #include <SDL.h> @@ -325,7 +325,7 @@ static SDLMusic *loadMusic(const std::string &fileName, const SkipError skipError) { const std::string path = paths.getStringValue("music").append(fileName); - if (!PhysFs::exists(path.c_str())) + if (!VirtFs::exists(path.c_str())) { if (skipError == SkipError_false) reportAlways("Music file not found: %s", fileName.c_str()); |