From c3b1f45f96e0b99f39dad83d5ccb0e5af2e5ca44 Mon Sep 17 00:00:00 2001 From: elasota Date: Sat, 26 Sep 2020 16:47:45 -0400 Subject: [PATCH] Fix missing return value --- AerofoilSDL/GpDisplayDriver_SDL_GL2.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AerofoilSDL/GpDisplayDriver_SDL_GL2.cpp b/AerofoilSDL/GpDisplayDriver_SDL_GL2.cpp index 3106b3a..09974e9 100644 --- a/AerofoilSDL/GpDisplayDriver_SDL_GL2.cpp +++ b/AerofoilSDL/GpDisplayDriver_SDL_GL2.cpp @@ -436,6 +436,8 @@ bool GpGLVertexArray::InitWithSpecs(const GpGLVertexArraySpec *specs, size_t num m_specs[i] = specs[i]; m_numSpecs = numSpecs; + + return true; } void GpGLVertexArray::Activate(const GLint *locations)