mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 20:28:56 +00:00
Merge pull request #149 from lioncash/filemonitor-song-types
Add more sound file extensions to FileMonitor's IsSoundFile.
This commit is contained in:
commit
e05eca71ea
1 changed files with 5 additions and 1 deletions
|
@ -46,7 +46,11 @@ bool IsSoundFile(const std::string& filename)
|
||||||
".dsp", // Metroid Prime
|
".dsp", // Metroid Prime
|
||||||
".hps", // SSB Melee
|
".hps", // SSB Melee
|
||||||
".ogg", // Tony Hawk's Underground 2
|
".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();
|
return extensions.find(extension) != extensions.end();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue