diff options
author | Lioncash <mathew1800@gmail.com> | 2018-12-26 17:32:30 -0500 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-12-26 17:32:32 -0500 |
commit | 67fa21e143778090964a744cd46ff17829591b7d (patch) | |
tree | 87baf60c599a27982934f087f17d1abd2860e064 /src | |
parent | 8047873a66146ae25e9707796b16062ed00e60b7 (diff) |
renderer_opengl: Correct forward declaration of FramebufferLayout
This is actually a struct, not a class, which can lead to compilation
warnings.
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/renderer_opengl/renderer_opengl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/renderer_opengl/renderer_opengl.h b/src/video_core/renderer_opengl/renderer_opengl.h index 067fad81b..b85cc262f 100644 --- a/src/video_core/renderer_opengl/renderer_opengl.h +++ b/src/video_core/renderer_opengl/renderer_opengl.h @@ -17,7 +17,7 @@ class EmuWindow; } namespace Layout { -class FramebufferLayout; +struct FramebufferLayout; } namespace OpenGL { |