SDL: Note that "auto" is the default for SDL_HINT_VIDEO_MINIMIZE_ON_FOCUS_LOSS

From 59961d8343553edd24d37f3fec8f836dc9f88f4c Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Sun, 21 Dec 2025 08:51:26 -0800
Subject: [PATCH] Note that "auto" is the default for
 SDL_HINT_VIDEO_MINIMIZE_ON_FOCUS_LOSS

Fixes https://github.com/libsdl-org/SDL/issues/14686
---
 include/SDL3/SDL_hints.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/SDL3/SDL_hints.h b/include/SDL3/SDL_hints.h
index bd27b4955f4f1..68cbdcbe86d92 100644
--- a/include/SDL3/SDL_hints.h
+++ b/include/SDL3/SDL_hints.h
@@ -3725,8 +3725,8 @@ extern "C" {
  * The variable can be set to the following values:
  *
  * - "0": Fullscreen windows will not be minimized when they lose focus.
- *   (default)
  * - "1": Fullscreen windows are minimized when they lose focus.
+ * - "auto": Fullscreen windows are minimized when they lose focus if they use exclusive fullscreen modes, so the desktop video mode is restored. (default)
  *
  * This hint can be set anytime.
  *