diff options
| author | Stenzek <stenzek@gmail.com> | 2019-11-26 15:31:45 +1100 |
|---|---|---|
| committer | Stenzek <stenzek@gmail.com> | 2019-12-28 19:20:41 +1000 |
| commit | d744c5a148f5a477b41b63bceac0558a498ef989 (patch) | |
| tree | 475743122047bf92e00afd44711ef9be65e43565 /Source/Core/VideoCommon/VertexLoaderARM64.cpp | |
| parent | 6fcb1c6c464c1fcf16104b21efb69176dfff7841 (diff) | |
Compile fixes for Windows-on-ARM64
Diffstat (limited to 'Source/Core/VideoCommon/VertexLoaderARM64.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VertexLoaderARM64.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/VertexLoaderARM64.cpp b/Source/Core/VideoCommon/VertexLoaderARM64.cpp index f4c4648ab5..c212ca7a81 100644 --- a/Source/Core/VideoCommon/VertexLoaderARM64.cpp +++ b/Source/Core/VideoCommon/VertexLoaderARM64.cpp @@ -379,7 +379,7 @@ void VertexLoaderARM64::GenerateVertexLoader() bool has_tc_scale = false; for (int i = 0; i < 8; i++) { - has_tc |= tc[i]; + has_tc |= tc[i] != 0; has_tc_scale |= !!m_VtxAttr.texCoord[i].Frac; } |
