diff options
author | Lioncash <mathew1800@gmail.com> | 2014-11-15 01:32:43 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2014-11-16 22:44:14 +0100 |
commit | bd76783d9187eb0fac6128646ab6a1a25e4cb2d0 (patch) | |
tree | 8f8ff895cbd9de9cf89a582993418022e80e591d /src/video_core | |
parent | Merge pull request #183 from archshift/lowpath (diff) | |
download | yuzu-bd76783d9187eb0fac6128646ab6a1a25e4cb2d0.tar yuzu-bd76783d9187eb0fac6128646ab6a1a25e4cb2d0.tar.gz yuzu-bd76783d9187eb0fac6128646ab6a1a25e4cb2d0.tar.bz2 yuzu-bd76783d9187eb0fac6128646ab6a1a25e4cb2d0.tar.lz yuzu-bd76783d9187eb0fac6128646ab6a1a25e4cb2d0.tar.xz yuzu-bd76783d9187eb0fac6128646ab6a1a25e4cb2d0.tar.zst yuzu-bd76783d9187eb0fac6128646ab6a1a25e4cb2d0.zip |
Diffstat (limited to 'src/video_core')
-rw-r--r-- | src/video_core/vertex_shader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/vertex_shader.h b/src/video_core/vertex_shader.h index 607a8e803..bfb6fb6e3 100644 --- a/src/video_core/vertex_shader.h +++ b/src/video_core/vertex_shader.h @@ -141,7 +141,7 @@ union Instruction { return BitFieldType::Value(); else if (GetRegisterType() == Temporary) return BitFieldType::Value() - 0x10; - else if (GetRegisterType() == FloatUniform) + else // if (GetRegisterType() == FloatUniform) return BitFieldType::Value() - 0x20; } |