Skip to content
This repository

HTTPS clone URL

Subversion checkout URL

You can clone with HTTPS or Subversion.

Download ZIP
Browse code

Merge pull request #149 from lioncash/filemonitor-song-types

Add more sound file extensions to FileMonitor's IsSoundFile.
  • Loading branch information...
commit e05eca71ea9c58c334fe7f1db1b2706f99bdc562 2 parents 633dc75 + b027c4d
Matthew Parlane authored

Showing 1 changed file with 5 additions and 1 deletion. Show Diff Stats Hide Diff Stats

  1. 6  Source/Core/DiscIO/FileMonitor.cpp
6  Source/Core/DiscIO/FileMonitor.cpp
@@ -46,7 +46,11 @@ bool IsSoundFile(const std::string& filename)
46 46
 		".dsp",   // Metroid Prime
47 47
 		".hps",   // SSB Melee
48 48
 		".ogg",   // Tony Hawk's Underground 2
49  
-		".sad"    // Disaster 
  49
+		".sad",   // Disaster
  50
+		".snd",   // Tales of Symphonia
  51
+		".song",  // Tales of Symphonia
  52
+		".ssm",   // Custom Robo, Kirby Air Ride, etc.
  53
+		".str",   // Harry Potter & the Sorcerer's Stone
50 54
 	};
51 55
 
52 56
 	return extensions.find(extension) != extensions.end();

0 notes on commit e05eca7

Please sign in to comment.
Something went wrong with that request. Please try again.