diff options
| author | Tony Wasserka <NeoBrainX@gmail.com> | 2013-09-12 13:55:38 +0200 |
|---|---|---|
| committer | Tony Wasserka <NeoBrainX@gmail.com> | 2014-03-14 22:30:27 +0100 |
| commit | cff952c397833873055e42a85b76ff8a621a0792 (patch) | |
| tree | 520896f47a7e782423503b480317a24f48389236 /Source/Core/VideoBackends/Software/Tev.cpp | |
| parent | e7a42d884f22c1242234a0fe5a6de7cca3acbc06 (diff) | |
PixelShaderGen: Use integer math for indirect tev stage texcoord calculation.
Diffstat (limited to 'Source/Core/VideoBackends/Software/Tev.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Software/Tev.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoBackends/Software/Tev.cpp b/Source/Core/VideoBackends/Software/Tev.cpp index ad21496e88..0c80e04c93 100644 --- a/Source/Core/VideoBackends/Software/Tev.cpp +++ b/Source/Core/VideoBackends/Software/Tev.cpp @@ -478,7 +478,7 @@ void Tev::Indirect(unsigned int stageNum, s32 s, s32 t) case ITBA_OFF: AlphaBump = 0; break; - case ITBA_S: + case ITBA_S: AlphaBump = indmap[TextureSampler::ALP_SMP]; break; case ITBA_T: |
