From f3a8874214b61f33332b826a37ac9ca25dee1477 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 18 May 2018 15:09:37 -0400 Subject: [PATCH] EfbInterface: Move efb array into the EfbInterface namespace --- Source/Core/VideoBackends/Software/EfbInterface.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/VideoBackends/Software/EfbInterface.cpp b/Source/Core/VideoBackends/Software/EfbInterface.cpp index a13feb6c50..cf30c35a48 100644 --- a/Source/Core/VideoBackends/Software/EfbInterface.cpp +++ b/Source/Core/VideoBackends/Software/EfbInterface.cpp @@ -18,10 +18,10 @@ #include "VideoCommon/LookUpTables.h" #include "VideoCommon/PerfQueryBase.h" -static u8 efb[EFB_WIDTH * EFB_HEIGHT * 6]; - namespace EfbInterface { +static u8 efb[EFB_WIDTH * EFB_HEIGHT * 6]; + u32 perf_values[PQ_NUM_MEMBERS]; static inline u32 GetColorOffset(u16 x, u16 y)