diff options
| author | Jules Blok <jules.blok@gmail.com> | 2016-09-01 17:28:48 +0200 |
|---|---|---|
| committer | Jules Blok <jules.blok@gmail.com> | 2016-09-01 17:28:48 +0200 |
| commit | 9fb6f93ca1349697bab250364a90cb6d994cdb72 (patch) | |
| tree | e92883176274e320946d3cada122e33306e3e625 /Source/Core/VideoCommon/PixelEngine.cpp | |
| parent | ec428756a601d9bf80b177870e66113bfe4ee546 (diff) | |
PixelEngine: Add missing static specifier for `s_token_finish_mutex`.
Diffstat (limited to 'Source/Core/VideoCommon/PixelEngine.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/PixelEngine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/PixelEngine.cpp b/Source/Core/VideoCommon/PixelEngine.cpp index 81adc2071e..f38eb71125 100644 --- a/Source/Core/VideoCommon/PixelEngine.cpp +++ b/Source/Core/VideoCommon/PixelEngine.cpp @@ -90,7 +90,7 @@ static UPEAlphaModeConfReg m_AlphaModeConf; static UPEAlphaReadReg m_AlphaRead; static UPECtrlReg m_Control; -std::mutex s_token_finish_mutex; +static std::mutex s_token_finish_mutex; static u16 s_token; static u16 s_token_pending; static bool s_token_interrupt_pending; |
