summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-05-08 23:04:42 -0400
committerLioncash <mathew1800@gmail.com>2016-05-08 23:08:18 -0400
commit6d5f2a3cff519ca2811033d8381fac2515a74af8 (patch)
tree40afa20cf04698d2c257a5de156cb4b00cdbcc07 /src
parent5587383eb72b02af79526d6fe5e662b281b4b32b (diff)
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;
}
namespace Shader {
-class InputVertex;
+struct InputVertex;
}
class VertexLoader {