From a1ce9eab9f3b50f5156a9e89cf8710c4b21da192 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Sat, 1 Nov 2025 13:42:55 -0400 Subject: [PATCH] Fixed case mismatch in sound directory files for Heretic and Hexen. --- Toby Doom Launcher.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Toby Doom Launcher.py b/Toby Doom Launcher.py index 10d81d6..3cab1c3 100755 --- a/Toby Doom Launcher.py +++ b/Toby Doom Launcher.py @@ -2299,11 +2299,13 @@ class DoomLauncher(QMainWindow): menuPath = self.gamePath / "Addons" / "MENU" if menuPath.exists(): # Add menu files in order + # Sound directory files use capitalized names (DOOM, Heretic, Hexen) + sound_dir_name = game_type if game_type == "DOOM" else game_type.capitalize() menu_addons = [ "TobyV9_SimpleMenu.pk3", - f"TobySoundDirectory_{game_type}.pk3" + f"TobySoundDirectory_{sound_dir_name}.pk3" ] - + for addon in menu_addons: addon_path = menuPath / addon if addon_path.exists():