From efc9744aa464f01eeeccc1b354b0564d819fdeb3 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 22 Apr 2022 16:06:05 -0400 Subject: Windows: Avoid else after return --- src/win_gl.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/win_gl.c') diff --git a/src/win_gl.c b/src/win_gl.c index 718a93c..0a035a1 100644 --- a/src/win_gl.c +++ b/src/win_gl.c @@ -211,7 +211,9 @@ puglWinGlCreate(PuglView* view) // Create real window with desired pixel format if ((st = puglWinCreateWindow(view, "Pugl", &impl->hwnd, &impl->hdc))) { return st; - } else if (!SetPixelFormat(impl->hdc, impl->pfId, &impl->pfd)) { + } + + if (!SetPixelFormat(impl->hdc, impl->pfId, &impl->pfd)) { ReleaseDC(impl->hwnd, impl->hdc); DestroyWindow(impl->hwnd); impl->hwnd = NULL; @@ -224,7 +226,9 @@ puglWinGlCreate(PuglView* view) !(surface->hglrc = surface->procs.wglCreateContextAttribs( impl->hdc, 0, contextAttribs))) { return PUGL_CREATE_CONTEXT_FAILED; - } else if (!(surface->hglrc = wglCreateContext(impl->hdc))) { + } + + if (!(surface->hglrc = wglCreateContext(impl->hdc))) { return PUGL_CREATE_CONTEXT_FAILED; } -- cgit v1.2.1