diff options
| author | 2016-05-08 23:04:42 -0400 | |
|---|---|---|
| committer | 2016-05-08 23:08:18 -0400 | |
| commit | 6d5f2a3cff519ca2811033d8381fac2515a74af8 (patch) | |
| tree | 40afa20cf04698d2c257a5de156cb4b00cdbcc07 /src | |
| parent | vertex_loader: Provide an assertion for ensuring the loader has been setup (diff) | |
| download | yuzu-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.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; | |||
| 12 | } | 12 | } |
| 13 | 13 | ||
| 14 | namespace Shader { | 14 | namespace Shader { |
| 15 | class InputVertex; | 15 | struct InputVertex; |
| 16 | } | 16 | } |
| 17 | 17 | ||
| 18 | class VertexLoader { | 18 | class VertexLoader { |