game.libretro.vecx: use GLES when GL is not available

This commit is contained in:
Zhang Ning 2021-01-21 15:16:26 +08:00
parent 7a3fc27882
commit f4756557c6

View File

@ -15,7 +15,11 @@ PKG_LIBPATH="${PKG_LIBNAME}"
PKG_LIBVAR="VECX_LIB"
make_target() {
make
if [ "$OPENGL_SUPPORT" = no ]; then
HAS_GLES=1 make
else
make
fi
}
makeinstall_target() {