From f2bdf2a8cc3ba5cf6cfa06db2e974ce6a84688dc Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sun, 14 Sep 2025 09:01:42 -0700 Subject: [PATCH] Removed unnecessary Windows version check --- src/dialog/windows/SDL_windowsdialog.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/dialog/windows/SDL_windowsdialog.c b/src/dialog/windows/SDL_windowsdialog.c index ebaf78288f..d1bf7f29f6 100644 --- a/src/dialog/windows/SDL_windowsdialog.c +++ b/src/dialog/windows/SDL_windowsdialog.c @@ -518,10 +518,6 @@ bool windows_ShowModernFileFolderDialog(SDL_FileDialogType dialog_type, const ch bool success = false; bool co_init = false; - if (!WIN_IsWindows7OrGreater()) { - goto quit; - } - // We can assume shell32 is already loaded here. shell32_handle = GetModuleHandle(TEXT("shell32.dll")); if (!shell32_handle) {