summaryrefslogtreecommitdiffstats
path: root/game/client/resource
diff options
context:
space:
mode:
Diffstat (limited to 'game/client/resource')
-rw-r--r--game/client/resource/sound_effect.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/game/client/resource/sound_effect.cc b/game/client/resource/sound_effect.cc
index d6cc7c5..9d5d8a9 100644
--- a/game/client/resource/sound_effect.cc
+++ b/game/client/resource/sound_effect.cc
@@ -4,7 +4,7 @@
#include "core/resource/resource.hh"
-#include "core/utils/physfs.hh"
+#include "core/io/physfs.hh"
#include "client/globals.hh"
@@ -35,7 +35,7 @@ static const void* sound_effect_load_func(const char* name, std::uint32_t flags)
auto file = PHYSFS_openRead(name);
if(file == nullptr) {
- spdlog::warn("sfx: {}: {}", name, utils::physfs_error());
+ spdlog::warn("sfx: {}: {}", name, io::physfs_error());
return nullptr;
}