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/VideoCommon/MainBase.cpp | |
| parent | 9560ecdbec319ab4bb7aca2b8bd2e6ed27d0b7c0 (diff) | |
mark all local variables as static
Diffstat (limited to 'Source/Core/VideoCommon/MainBase.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/MainBase.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/MainBase.cpp b/Source/Core/VideoCommon/MainBase.cpp index f9ccc47375..f96201c92d 100644 --- a/Source/Core/VideoCommon/MainBase.cpp +++ b/Source/Core/VideoCommon/MainBase.cpp @@ -22,8 +22,8 @@ volatile u32 s_swapRequested = false; u32 s_efbAccessRequested = false; volatile u32 s_FifoShuttingDown = false; -std::condition_variable s_perf_query_cond; -std::mutex s_perf_query_lock; +static std::condition_variable s_perf_query_cond; +static std::mutex s_perf_query_lock; static volatile bool s_perf_query_requested; static volatile struct |
