Browse Source

bootmanager: Eliminate variable shadowing

pull/15/merge
Morph 4 years ago
parent
commit
2d903e3ce6
  1. 2
      src/yuzu/bootmanager.cpp

2
src/yuzu/bootmanager.cpp

@ -127,7 +127,7 @@ void EmuThread::run() {
class OpenGLSharedContext : public Core::Frontend::GraphicsContext {
public:
/// Create the original context that should be shared from
explicit OpenGLSharedContext(QSurface* surface) : surface(surface) {
explicit OpenGLSharedContext(QSurface* surface_) : surface{surface_} {
QSurfaceFormat format;
format.setVersion(4, 6);
format.setProfile(QSurfaceFormat::CompatibilityProfile);

Loading…
Cancel
Save