summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/OpcodeDecoding.cpp
diff options
context:
space:
mode:
authorPokechu22 <Pokechu022@gmail.com>2021-05-16 14:41:03 -0700
committerPokechu22 <Pokechu022@gmail.com>2021-12-18 15:21:48 -0800
commit0afe318b55fd71688f2a8b6c19c50830796dbb01 (patch)
tree50d1956101078805bdb5665ac7037760acbf7f6c /Source/Core/VideoCommon/OpcodeDecoding.cpp
parentd039b1bc0dfaba2a88036468b6d971bb1d7e463d (diff)
OpcodeDecoding: Make s_is_fifo_error_seen static
Diffstat (limited to 'Source/Core/VideoCommon/OpcodeDecoding.cpp')
-rw-r--r--Source/Core/VideoCommon/OpcodeDecoding.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/OpcodeDecoding.cpp b/Source/Core/VideoCommon/OpcodeDecoding.cpp
index cefc88239d..63734db384 100644
--- a/Source/Core/VideoCommon/OpcodeDecoding.cpp
+++ b/Source/Core/VideoCommon/OpcodeDecoding.cpp
@@ -32,7 +32,7 @@
namespace OpcodeDecoder
{
-bool s_is_fifo_error_seen = false;
+static bool s_is_fifo_error_seen = false;
bool g_record_fifo_data = false;
void Init()