From 0afe318b55fd71688f2a8b6c19c50830796dbb01 Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Sun, 16 May 2021 14:41:03 -0700 Subject: [PATCH] OpcodeDecoding: Make s_is_fifo_error_seen static --- Source/Core/VideoCommon/OpcodeDecoding.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()