From 5b1d09377809744fe56130e824f5f73b958b7bd6 Mon Sep 17 00:00:00 2001 From: Flyinghead Date: Sat, 9 May 2020 18:20:56 +0200 Subject: [PATCH] fix GLES2+SDL build --- core/wsi/sdl.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/wsi/sdl.h b/core/wsi/sdl.h index fae3008d7..cf3219b53 100644 --- a/core/wsi/sdl.h +++ b/core/wsi/sdl.h @@ -28,6 +28,8 @@ #include #ifndef GLES2 #include "gl32funcs.h" +#else +extern "C" void load_gles_symbols(); #endif #endif #include "gl_context.h"