Avoid -Wshadow warning

Co-authored-by: Mai M. <mathew1800@gmail.com>
This commit is contained in:
Clément Gallet 2021-06-05 18:43:10 +02:00 committed by GitHub
parent d94248f11b
commit 49406504a2

View file

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