make some enums

This commit is contained in:
Anthony Samms
2025-11-14 07:54:22 -05:00
parent d0cdb7b866
commit d06e5276b6
12 changed files with 138 additions and 105 deletions

View File

@@ -245,7 +245,7 @@ class AudioEngine:
"""Load sounds for a given screen"""
path = self.sounds_path / screen_name
if not path.exists():
logger.warning(f"Sounds for {screen_name} not found")
logger.warning(f"Sounds for screen {screen_name} not found")
return
for sound in path.iterdir():
if sound.is_dir():