sdl12-compat: HOW_TO_TEST_GAMES: Added note on setgid binaries.

From 023e81237c9cc463e7761a332d517bae2318a2c5 Mon Sep 17 00:00:00 2001
From: "Ryan C. Gordon" <[EMAIL REDACTED]>
Date: Mon, 24 Oct 2022 14:44:13 -0400
Subject: [PATCH] HOW_TO_TEST_GAMES: Added note on setgid binaries.

---
 HOW_TO_TEST_GAMES.md | 32 +++++++++++++++++++++++++++++++-
 1 file changed, 31 insertions(+), 1 deletion(-)

diff --git a/HOW_TO_TEST_GAMES.md b/HOW_TO_TEST_GAMES.md
index 74c64b458..8b37df5c6 100644
--- a/HOW_TO_TEST_GAMES.md
+++ b/HOW_TO_TEST_GAMES.md
@@ -42,7 +42,37 @@ Either overwrite the copy of SDL-1.2 that the game uses with sdl12-compat,
 or (on Linux) export LD_LIBRARY_PATH to point to your copy, so the system will
 favor it when loading libraries.
 
-
+## Watch out for setuid/setgid binaries!
+
+On Linux, if you're testing a binary that's setgid to a "games" group (which
+we ran into several times with Debian packages), or setuid root or whatever,
+then the system will ignore the LD_LIBRARY_PATH variable, as a security
+measure.
+
+The reason some games are packaged like this is usually because they want to
+write to a high score list in a global, shared directory. Often times the
+games will just carry on if they fail to do so.
+
+There are several ways to bypass this:
+
+- On some distros, you can run `ld.so` directly:
+  ```bash
+  LD_LIBRARY_PATH=/where/i/can/find/sdl12-compat ld.so /usr/games/mygame
+  ```
+- You can remove the setgid bit:
+  ```bash
+  # (it's `u-s` for the setuid bit)
+  sudo chmod g-s /usr/games/mygame
+  ```
+- You can install sdl12-compat system-wide, so the game uses that
+  instead of SDL 1.2 by default.
+- If you don't have root access at all, you can try to copy the game 
+  somewhere else or install a personal copy, or build from source code,
+  but these are drastic measures.
+  
+Definitely read the next section ("Am I actually running sdl12-compat?") in
+these scenarios to make sure you ended up with the right library!
+  
 ## Am I actually running sdl12-compat?
 
 The easiest way to know is to set some environment variables: