Pārlūkot izejas kodu

vertex_loader: Correct forward declaration of InputVertex

It's actually a struct, not a class.
Lioncash 10 gadi atpakaļ
vecāks
revīzija
6d5f2a3cff
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      src/video_core/vertex_loader.h

+ 1 - 1
src/video_core/vertex_loader.h

@@ -12,7 +12,7 @@ class MemoryAccessTracker;
 }
 
 namespace Shader {
-class InputVertex;
+struct InputVertex;
 }
 
 class VertexLoader {