Browse Source

Avoid -Wshadow warning

Co-authored-by: Mai M. <mathew1800@gmail.com>
nce_cpp
Clément Gallet 5 years ago
committed by GitHub
parent
commit
49406504a2
  1. 2
      src/yuzu_cmd/emu_window/emu_window_sdl2_gl.cpp

2
src/yuzu_cmd/emu_window/emu_window_sdl2_gl.cpp

@ -32,7 +32,7 @@
class SDLGLContext : public Core::Frontend::GraphicsContext {
public:
explicit SDLGLContext(SDL_Window* window) : window(window) {
explicit SDLGLContext(SDL_Window* window_) : window{window_} {
context = SDL_GL_CreateContext(window);
}

Loading…
Cancel
Save