Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #875 from lioncash/statics
DiscIO: Make the unordered set in IsSoundFile static
  • Loading branch information
delroth committed Aug 26, 2014
2 parents 25bd734 + f18fec8 commit 81048f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/DiscIO/FileMonitor.cpp
Expand Up @@ -38,7 +38,7 @@ bool IsSoundFile(const std::string& filename)
SplitPath(filename, nullptr, nullptr, &extension);
std::transform(extension.begin(), extension.end(), extension.begin(), ::tolower);

std::unordered_set<std::string> extensions = {
static std::unordered_set<std::string> extensions = {
".adp", // 1080 Avalanche, Crash Bandicoot, etc.
".adx", // Sonic Adventure 2 Battle, etc.
".afc", // Zelda WW
Expand Down

0 comments on commit 81048f3

Please sign in to comment.