SDL: Disable formatting not supported by Visual Studio 2019 (001d2)

From 001d2e2f650f6247cc31c209b5be06b8fa214f50 Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Fri, 27 May 2022 15:29:21 -0700
Subject: [PATCH] Disable formatting not supported by Visual Studio 2019

---
 .clang-format | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/.clang-format b/.clang-format
index 01d4945e7e6..f4d9bcfd0e3 100644
--- a/.clang-format
+++ b/.clang-format
@@ -13,7 +13,7 @@ AllowShortEnumsOnASingleLine: true
 AllowShortBlocksOnASingleLine: Never
 AllowShortCaseLabelsOnASingleLine: false
 AllowShortFunctionsOnASingleLine: All
-AllowShortIfStatementsOnASingleLine: AllIfsAndElse
+AllowShortIfStatementsOnASingleLine: Never
 AllowShortLoopsOnASingleLine: false
 
 AlwaysBreakAfterDefinitionReturnType: All
@@ -45,7 +45,10 @@ Cpp11BracedListStyle: false
 
 # Never format includes
 IncludeBlocks: Preserve
-SortIncludes: Never
+# clang-format version 4.0 through 12.0:
+#SortIncludes: false
+# clang-format version 13.0+:
+#SortIncludes: Never
 
 # No length limit, in case it breaks macros, you can
 # disable it with /* clang-format off/on */ comments