diff options
author | FernandoS27 <fsahmkow27@gmail.com> | 2018-11-17 18:04:50 -0400 |
---|---|---|
committer | FernandoS27 <fsahmkow27@gmail.com> | 2018-11-21 11:43:17 -0400 |
commit | 377c60645c493aabff83eaa245f3431a261657cd (patch) | |
tree | badca5bb43114406004a09d610e1d8c959fffad8 /src/yuzu_cmd/emu_window | |
parent | b6d2c64f4dcb01f1ffc99f9a057910ec65c6a401 (diff) |
Update OpenGL's backend version from 3.3 to 4.3
Diffstat (limited to 'src/yuzu_cmd/emu_window')
-rw-r--r-- | src/yuzu_cmd/emu_window/emu_window_sdl2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp b/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp index a9ad92a80..d53d2e3ce 100644 --- a/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp +++ b/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp @@ -157,7 +157,7 @@ EmuWindow_SDL2::EmuWindow_SDL2(bool fullscreen) { exit(1); } - SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 3); + SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 4); SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 3); SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_CORE); SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1); |