Skip to content

Commit

Permalink
Use plain OpenGL instead of OpenGL Core
Browse files Browse the repository at this point in the history
  • Loading branch information
JesseTG committed Nov 7, 2023
1 parent 2028ea6 commit 1fac37d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libretro/opengl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ bool melonds::opengl::Initialize() noexcept {
glsm_ctx_params_t params = {};

// melonds wants an opengl 3.1 context, so glcore is required for mesa compatibility
params.context_type = RETRO_HW_CONTEXT_OPENGL_CORE;
params.context_type = RETRO_HW_CONTEXT_OPENGL;
params.major = 3;
params.minor = 1;
params.context_reset = ContextReset;
Expand Down

0 comments on commit 1fac37d

Please sign in to comment.