summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/FileMonitor.cpp
diff options
context:
space:
mode:
authorMatthew Parlane <parlane@gmail.com>2014-03-10 13:45:23 +1300
committerMatthew Parlane <parlane@gmail.com>2014-03-10 13:45:23 +1300
commite05eca71ea9c58c334fe7f1db1b2706f99bdc562 (patch)
tree4751b36d38886f307c233d179c38ce12ab371c84 /Source/Core/DiscIO/FileMonitor.cpp
parent633dc75e857d649ffab7c4398e92536bccc9e1de (diff)
parentb027c4d64eb011c051750b94fef0ad8ef6c49572 (diff)
Merge pull request #149 from lioncash/filemonitor-song-types
Add more sound file extensions to FileMonitor's IsSoundFile.
Diffstat (limited to 'Source/Core/DiscIO/FileMonitor.cpp')
-rw-r--r--Source/Core/DiscIO/FileMonitor.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/FileMonitor.cpp b/Source/Core/DiscIO/FileMonitor.cpp
index e04bc2211e..34790ff408 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();