diff options
author | Lioncash <mathew1800@gmail.com> | 2016-05-08 23:04:42 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2016-05-08 23:08:18 -0400 |
commit | 6d5f2a3cff519ca2811033d8381fac2515a74af8 (patch) | |
tree | 40afa20cf04698d2c257a5de156cb4b00cdbcc07 /src | |
parent | 5587383eb72b02af79526d6fe5e662b281b4b32b (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.h | 2 |
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 { |