summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2016-05-08 23:04:42 -0400
committerGravatar Lioncash2016-05-08 23:08:18 -0400
commit6d5f2a3cff519ca2811033d8381fac2515a74af8 (patch)
tree40afa20cf04698d2c257a5de156cb4b00cdbcc07 /src
parentvertex_loader: Provide an assertion for ensuring the loader has been setup (diff)
downloadyuzu-6d5f2a3cff519ca2811033d8381fac2515a74af8.tar.gz
yuzu-6d5f2a3cff519ca2811033d8381fac2515a74af8.tar.xz
yuzu-6d5f2a3cff519ca2811033d8381fac2515a74af8.zip
vertex_loader: Correct forward declaration of InputVertex
It's actually a struct, not a class.
Diffstat (limited to 'src')
-rw-r--r--src/video_core/vertex_loader.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/vertex_loader.h b/src/video_core/vertex_loader.h
index 7192120a5..ac162c254 100644
--- a/src/video_core/vertex_loader.h
+++ b/src/video_core/vertex_loader.h
@@ -12,7 +12,7 @@ class MemoryAccessTracker;
12} 12}
13 13
14namespace Shader { 14namespace Shader {
15class InputVertex; 15struct InputVertex;
16} 16}
17 17
18class VertexLoader { 18class VertexLoader {