diff options
| author | Lioncash <mathew1800@gmail.com> | 2014-03-09 12:46:01 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2014-03-09 12:46:01 -0400 |
| commit | b027c4d64eb011c051750b94fef0ad8ef6c49572 (patch) | |
| tree | aa9c4bf2bb116156257a2010cce239ce8f4dcdaa /Source/Core/DiscIO/FileMonitor.cpp | |
| parent | 2254e5a14ba059daadf82cad5e980a9a9c828ce4 (diff) | |
Add more sound file extensions to FileMonitor's IsSoundFile.
Diffstat (limited to 'Source/Core/DiscIO/FileMonitor.cpp')
| -rw-r--r-- | Source/Core/DiscIO/FileMonitor.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
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(); |
