From 493c35fd0384151710326d7dbe0964cec3d7a644 Mon Sep 17 00:00:00 2001 From: MysterD Date: Mon, 9 May 2022 04:07:43 -0700 Subject: [PATCH] Fix custom sounds --- src/pc/mods/mod.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pc/mods/mod.c b/src/pc/mods/mod.c index ce6cacd2..a9f602e0 100644 --- a/src/pc/mods/mod.c +++ b/src/pc/mods/mod.c @@ -289,7 +289,7 @@ static bool mod_load_files(struct Mod* mod, char* modName, char* fullPath) { // deal with sound directory { const char* fileTypes[] = { ".m64", ".mp3", ".aiff", ".ogg", NULL }; - if (!mod_load_files_dir(mod, fullPath, "levels", fileTypes)) { return false; } + if (!mod_load_files_dir(mod, fullPath, "sound", fileTypes)) { return false; } } return true;