diff options
| author | Lioncash <mathew1800@gmail.com> | 2015-10-10 16:37:15 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2015-12-06 02:51:34 -0500 |
| commit | 0608ed513042d0c3670ff653d14c618ed4ce26c1 (patch) | |
| tree | f81a7d8f4ae22be012bcf56452a0d80e970957d7 /Source/Core/VideoBackends/Software/Rasterizer.cpp | |
| parent | a0924b5e1b2263314a1be74c44052cdda7628e29 (diff) | |
Rasterizer: Specify internal linkage on Draw
It's not exposed in the header.
Diffstat (limited to 'Source/Core/VideoBackends/Software/Rasterizer.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Software/Rasterizer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
