Jelajahi Sumber

Avoid -Wshadow warning

Co-authored-by: Mai M. <mathew1800@gmail.com>
Clément Gallet 5 tahun lalu
induk
melakukan
2e1c58b905
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      src/yuzu_cmd/emu_window/emu_window_sdl2_gl.cpp

+ 1 - 1
src/yuzu_cmd/emu_window/emu_window_sdl2_gl.cpp

@@ -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);
     }
     }