From b027c4d64eb011c051750b94fef0ad8ef6c49572 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 9 Mar 2014 12:46:01 -0400 Subject: [PATCH] Add more sound file extensions to FileMonitor's IsSoundFile. --- Source/Core/DiscIO/FileMonitor.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Source/Core/DiscIO/FileMonitor.cpp b/Source/Core/DiscIO/FileMonitor.cpp index cc0a345838..e22276cc30 100644 --- a/Source/Core/DiscIO/FileMonitor.cpp +++ b/Source/Core/DiscIO/FileMonitor.cpp @@ -46,7 +46,11 @@ bool IsSoundFile(const std::string& filename) ".dsp", // Metroid Prime ".hps", // SSB Melee ".ogg", // Tony Hawk's Underground 2 - ".sad" // Disaster + ".sad", // Disaster + ".snd", // Tales of Symphonia + ".song", // Tales of Symphonia + ".ssm", // Custom Robo, Kirby Air Ride, etc. + ".str", // Harry Potter & the Sorcerer's Stone }; return extensions.find(extension) != extensions.end();