summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2014-11-14 19:32:43 -0500
committerGravatar Lioncash2014-11-16 16:44:14 -0500
commitbd76783d9187eb0fac6128646ab6a1a25e4cb2d0 (patch)
tree8f8ff895cbd9de9cf89a582993418022e80e591d /src
parentMerge pull request #183 from archshift/lowpath (diff)
downloadyuzu-bd76783d9187eb0fac6128646ab6a1a25e4cb2d0.tar.gz
yuzu-bd76783d9187eb0fac6128646ab6a1a25e4cb2d0.tar.xz
yuzu-bd76783d9187eb0fac6128646ab6a1a25e4cb2d0.zip
vertex_shader: Fix control reaches end of function warning
Diffstat (limited to '')
-rw-r--r--src/video_core/vertex_shader.h2
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 {
141 return BitFieldType::Value(); 141 return BitFieldType::Value();
142 else if (GetRegisterType() == Temporary) 142 else if (GetRegisterType() == Temporary)
143 return BitFieldType::Value() - 0x10; 143 return BitFieldType::Value() - 0x10;
144 else if (GetRegisterType() == FloatUniform) 144 else // if (GetRegisterType() == FloatUniform)
145 return BitFieldType::Value() - 0x20; 145 return BitFieldType::Value() - 0x20;
146 } 146 }
147 147