SDL_mixer: examples: Note that web browsers are silent before user interaction. (667d7)

From 667d7450b93b9aa5eb81783809c1c232ddfdb0a0 Mon Sep 17 00:00:00 2001
From: "Ryan C. Gordon" <[EMAIL REDACTED]>
Date: Tue, 27 Jan 2026 10:48:17 -0500
Subject: [PATCH] examples: Note that web browsers are silent before user
 interaction.

---
 examples/basics/01-load-and-play/README.txt        | 2 ++
 examples/basics/02-play-with-options/README.txt    | 2 ++
 examples/basics/03-play-multiple-sounds/README.txt | 2 ++
 examples/basics/05-sinewave/README.txt             | 2 ++
 examples/basics/06-seeking/README.txt              | 4 +++-
 5 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/examples/basics/01-load-and-play/README.txt b/examples/basics/01-load-and-play/README.txt
index 5845554b..4b02628f 100644
--- a/examples/basics/01-load-and-play/README.txt
+++ b/examples/basics/01-load-and-play/README.txt
@@ -1 +1,3 @@
 This example code creates a mixer, loads a single sound, and plays it once.
+
+(Remember that web browsers won't make sound until you click on the page!)
diff --git a/examples/basics/02-play-with-options/README.txt b/examples/basics/02-play-with-options/README.txt
index 8e81a529..1ff5d433 100644
--- a/examples/basics/02-play-with-options/README.txt
+++ b/examples/basics/02-play-with-options/README.txt
@@ -1,2 +1,4 @@
 This example code creates a mixer, loads a single sound, and plays it, with
 several playback options (fade-in, loop, etc).
+
+(Remember that web browsers won't make sound until you click on the page!)
diff --git a/examples/basics/03-play-multiple-sounds/README.txt b/examples/basics/03-play-multiple-sounds/README.txt
index f0553292..f4e4718f 100644
--- a/examples/basics/03-play-multiple-sounds/README.txt
+++ b/examples/basics/03-play-multiple-sounds/README.txt
@@ -1 +1,3 @@
 This example code creates a mixer, loads two sounds, and mixes them.
+
+(Remember that web browsers won't make sound until you click on the page!)
diff --git a/examples/basics/05-sinewave/README.txt b/examples/basics/05-sinewave/README.txt
index ce40de25..d3489527 100644
--- a/examples/basics/05-sinewave/README.txt
+++ b/examples/basics/05-sinewave/README.txt
@@ -1 +1,3 @@
 This example code creates a mixer, and plays a sinewave forever.
+
+(Remember that web browsers won't make sound until you click on the page!)
diff --git a/examples/basics/06-seeking/README.txt b/examples/basics/06-seeking/README.txt
index 7cb0815e..8753b1ad 100644
--- a/examples/basics/06-seeking/README.txt
+++ b/examples/basics/06-seeking/README.txt
@@ -1,2 +1,4 @@
 This example code creates a mixer, loads a single sound, and plays it on loop,
-letting the user seek around in playback with a slider.
\ No newline at end of file
+letting the user seek around in playback with a slider.
+
+(Remember that web browsers won't make sound until you click on the page!)