diff --git a/sound.cpp b/sound.cpp index 490f4442..d80a0aeb 100644 --- a/sound.cpp +++ b/sound.cpp @@ -86,6 +86,8 @@ sound_buffer* sound_manager::get_buffer(std::string const &name) std::string file = find_file(Global::asCurrentDynamicPath + name); if (!file.size()) file = find_file("sounds/" + name); + if (!file.size()) + file = find_file(name); if (!file.size()) throw load_error(name);