Explorar o código

renderer_opengl: Correct forward declaration of FramebufferLayout

This is actually a struct, not a class, which can lead to compilation
warnings.
Lioncash %!s(int64=7) %!d(string=hai) anos
pai
achega
67fa21e143
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/video_core/renderer_opengl/renderer_opengl.h

+ 1 - 1
src/video_core/renderer_opengl/renderer_opengl.h

@@ -17,7 +17,7 @@ class EmuWindow;
 }
 
 namespace Layout {
-class FramebufferLayout;
+struct FramebufferLayout;
 }
 
 namespace OpenGL {