mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 03:32:46 +00:00
added make clean between Release and Debug build (#14262)
Co-authored-by: papa <papa>
This commit is contained in:
parent
4b7be8de3f
commit
afd463be16
4
.github/workflows/retroarch.yml
vendored
4
.github/workflows/retroarch.yml
vendored
@ -27,3 +27,7 @@ jobs:
|
||||
run: ./configure
|
||||
- name: Build
|
||||
run: make C89_BUILD=1
|
||||
- name: Build Debug
|
||||
run: |
|
||||
make clean # making sure we don't have leftovers from previous build
|
||||
make DEBUG=1 GL_DEBUG=1 C89_BUILD=1
|
||||
|
@ -3332,9 +3332,10 @@ static bool gl2_resolve_extensions(gl2_t *gl, const char *context_ident, const v
|
||||
if (gl->core_context_in_use)
|
||||
{
|
||||
#ifdef GL_NUM_EXTENSIONS
|
||||
GLint i;
|
||||
GLint exts = 0;
|
||||
glGetIntegerv(GL_NUM_EXTENSIONS, &exts);
|
||||
for (GLint i = 0; i < exts; i++)
|
||||
for (i = 0; i < exts; i++)
|
||||
{
|
||||
const char *ext = (const char*)glGetStringi(GL_EXTENSIONS, i);
|
||||
if (ext)
|
||||
|
Loading…
x
Reference in New Issue
Block a user