diff options
| author | degasus <wickmarkus@web.de> | 2014-07-08 15:58:25 +0200 |
|---|---|---|
| committer | degasus <wickmarkus@web.de> | 2014-07-11 16:10:20 +0200 |
| commit | 6d3f249dcc746cc7845ef88ddb8ce3bcc9221aca (patch) | |
| tree | e2ca5783d36a54283ff241ef9a053053bb5cc258 /Source/Core/DiscIO/FileMonitor.cpp | |
| parent | 9560ecdbec319ab4bb7aca2b8bd2e6ed27d0b7c0 (diff) | |
mark all local variables as static
Diffstat (limited to 'Source/Core/DiscIO/FileMonitor.cpp')
| -rw-r--r-- | Source/Core/DiscIO/FileMonitor.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/Core/DiscIO/FileMonitor.cpp b/Source/Core/DiscIO/FileMonitor.cpp index dba7c9ff74..ce8799b227 100644 --- a/Source/Core/DiscIO/FileMonitor.cpp +++ b/Source/Core/DiscIO/FileMonitor.cpp @@ -25,11 +25,11 @@ namespace FileMon { -DiscIO::IVolume *OpenISO = nullptr; -DiscIO::IFileSystem *pFileSystem = nullptr; -std::vector<const DiscIO::SFileInfo *> GCFiles; -std::string ISOFile = "", CurrentFile = ""; -bool FileAccess = true; +static DiscIO::IVolume *OpenISO = nullptr; +static DiscIO::IFileSystem *pFileSystem = nullptr; +static std::vector<const DiscIO::SFileInfo *> GCFiles; +static std::string ISOFile = "", CurrentFile = ""; +static bool FileAccess = true; // Filtered files bool IsSoundFile(const std::string& filename) |
