SDL: windows/gles: correct indentation

From 654965a6286ccb3ef861310d0cff578788641091 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= <[EMAIL REDACTED]>
Date: Thu, 16 Feb 2023 18:47:16 +0400
Subject: [PATCH] windows/gles: correct indentation
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
---
 src/video/windows/SDL_windowsopengles.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/video/windows/SDL_windowsopengles.c b/src/video/windows/SDL_windowsopengles.c
index 169c67a13ed0..55f381e1774d 100644
--- a/src/video/windows/SDL_windowsopengles.c
+++ b/src/video/windows/SDL_windowsopengles.c
@@ -101,10 +101,12 @@ int WIN_GLES_DeleteContext(_THIS, SDL_GLContext context)
     return 0;
 }
 
+/* *INDENT-OFF* */ /* clang-format off */
 SDL_EGL_SwapWindow_impl(WIN)
-    SDL_EGL_MakeCurrent_impl(WIN)
+SDL_EGL_MakeCurrent_impl(WIN)
+/* *INDENT-ON* */ /* clang-format on */
 
-        int WIN_GLES_SetupWindow(_THIS, SDL_Window *window)
+int WIN_GLES_SetupWindow(_THIS, SDL_Window *window)
 {
     /* The current context is lost in here; save it and reset it. */
     SDL_WindowData *windowdata = window->driverdata;