Browse Source
Avoid -Wshadow warning
Co-authored-by: Mai M. <mathew1800@gmail.com>
pull/15/merge
Clément Gallet
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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); |
|
|
|
} |
|
|
|
|
|
|
|
|