From 0608ed513042d0c3670ff653d14c618ed4ce26c1 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sat, 10 Oct 2015 16:37:15 -0400 Subject: [PATCH] Rasterizer: Specify internal linkage on Draw It's not exposed in the header. --- Source/Core/VideoBackends/Software/Rasterizer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/VideoBackends/Software/Rasterizer.cpp b/Source/Core/VideoBackends/Software/Rasterizer.cpp index 0e392eef06..9583456277 100644 --- a/Source/Core/VideoBackends/Software/Rasterizer.cpp +++ b/Source/Core/VideoBackends/Software/Rasterizer.cpp @@ -119,7 +119,7 @@ void SetTevReg(int reg, int comp, bool konst, s16 color) tev.SetRegColor(reg, comp, konst, color); } -inline void Draw(s32 x, s32 y, s32 xi, s32 yi) +static void Draw(s32 x, s32 y, s32 xi, s32 yi) { INCSTAT(swstats.thisFrame.rasterizedPixels);