summaryrefslogtreecommitdiff
path: root/src/soundmanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/soundmanager.cpp')
-rw-r--r--src/soundmanager.cpp4
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());