diff options
| author | degasus <wickmarkus@web.de> | 2016-03-06 11:03:45 +0100 |
|---|---|---|
| committer | degasus <wickmarkus@web.de> | 2016-03-06 11:05:49 +0100 |
| commit | ab44d2ec5c2e95221dd9f152bb80c63ae4345142 (patch) | |
| tree | 52a5e8f629d68dc100bfe078888959c49920342e /Source/Core/VideoBackends/Software/Rasterizer.cpp | |
| parent | 7a154181b4f020d16f9c851bb115eb29b4c6757a (diff) | |
VideoSW: Drop SetTevReg for colors.
Diffstat (limited to 'Source/Core/VideoBackends/Software/Rasterizer.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Software/Rasterizer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoBackends/Software/Rasterizer.cpp b/Source/Core/VideoBackends/Software/Rasterizer.cpp index 4020d4b646..5e835ba91a 100644 --- a/Source/Core/VideoBackends/Software/Rasterizer.cpp +++ b/Source/Core/VideoBackends/Software/Rasterizer.cpp @@ -64,9 +64,9 @@ static inline int iround(float x) return t; } -void SetTevReg(int reg, int comp, bool konst, s16 color) +void SetTevReg(int reg, int comp, s16 color) { - tev.SetRegColor(reg, comp, konst, color); + tev.SetRegColor(reg, comp, color); } static void Draw(s32 x, s32 y, s32 xi, s32 yi) |
