mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 09:55:45 +00:00
bootmanager: Eliminate variable shadowing
This commit is contained in:
parent
7e75b94e3b
commit
6134852675
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue