Przeglądaj źródła

yuzu/bootmanager: Replace unnnecessary constructor initializer list member of GGLContext

The default constructor will always run, even when not specified, so
this is redundant.

However, the context member can indeed be initialized in the constructor
initializer list.
Lioncash 7 lat temu
rodzic
commit
54e9f9b6ed
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      src/yuzu/bootmanager.cpp

+ 2 - 2
src/yuzu/bootmanager.cpp

@@ -91,8 +91,8 @@ void EmuThread::run() {
 
 class GGLContext : public Core::Frontend::GraphicsContext {
 public:
-    explicit GGLContext(QOpenGLContext* shared_context) : surface() {
-        context = std::make_unique<QOpenGLContext>(shared_context);
+    explicit GGLContext(QOpenGLContext* shared_context)
+        : context{std::make_unique<QOpenGLContext>(shared_context)} {
         surface.setFormat(shared_context->format());
         surface.create();
     }