mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-11-11 10:14:58 +00:00
Avoid -Wshadow warning
Co-authored-by: Mai M. <mathew1800@gmail.com>
This commit is contained in:
parent
9ff8504452
commit
2e1c58b905
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@
|
||||||
|
|
||||||
class SDLGLContext : public Core::Frontend::GraphicsContext {
|
class SDLGLContext : public Core::Frontend::GraphicsContext {
|
||||||
public:
|
public:
|
||||||
explicit SDLGLContext(SDL_Window* window) : window(window) {
|
explicit SDLGLContext(SDL_Window* window_) : window{window_} {
|
||||||
context = SDL_GL_CreateContext(window);
|
context = SDL_GL_CreateContext(window);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue