SDL-1.2: Merge pull request #845 from ccawley2011/crlf

From 8101d4035677b62641eb3d5c247c08577b156442 Mon Sep 17 00:00:00 2001
From: Cameron Cawley <[EMAIL REDACTED]>
Date: Wed, 25 Aug 2021 12:37:30 +0100
Subject: [PATCH] Fix mixed line endings

---
 src/video/wincommon/SDL_sysevents.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/video/wincommon/SDL_sysevents.c b/src/video/wincommon/SDL_sysevents.c
index 3b90fb008..207587e52 100644
--- a/src/video/wincommon/SDL_sysevents.c
+++ b/src/video/wincommon/SDL_sysevents.c
@@ -311,8 +311,8 @@ LRESULT CALLBACK WinMessage(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
 					if ( WINDIB_FULLSCREEN() ) {
 						appstate |= SDL_APPMOUSEFOCUS;
 						SDL_RestoreDesktopMode();
-						/* A fullscreen app gets hidden but will not get a minimize event */
-						appstate |= (SDL_APPACTIVE | SDL_APPMOUSEFOCUS);
+						/* A fullscreen app gets hidden but will not get a minimize event */
+						appstate |= (SDL_APPACTIVE | SDL_APPMOUSEFOCUS);
 #if defined(_WIN32_WCE)
 						LoadAygshell();
 						if( SHFullScreen )