SDL: docs/emscripten: --embed-file does not accept a '='

From 5415909f2d3322477aae99ecc1a0800111a3d847 Mon Sep 17 00:00:00 2001
From: Anonymous Maarten <[EMAIL REDACTED]>
Date: Wed, 3 Jul 2024 03:21:50 +0200
Subject: [PATCH] docs/emscripten: --embed-file does not accept a '='

---
 docs/README-emscripten.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/README-emscripten.md b/docs/README-emscripten.md
index 9c083664b64de..b2ee02b2ac64e 100644
--- a/docs/README-emscripten.md
+++ b/docs/README-emscripten.md
@@ -317,7 +317,7 @@ The _easiest_ (but not the best) way to get at your data files is to embed
 them in the app itself. Emscripten's linker has support for automating this.
 
 ```bash
-emcc -o index.html loopwave.c --embed-file=../test/sample.wav@/sounds/sample.wav
+emcc -o index.html loopwave.c --embed-file ../test/sample.wav@/sounds/sample.wav

This will pack …/test/sample.wav in your app, and make it available at