diff options
| author | tortugaveloz <danielcampora@outlook.es> | 2026-02-06 07:28:54 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-06 00:28:54 -0600 |
| commit | d7413601a664ea571baa5389e8de5a6f6a7e5620 (patch) | |
| tree | 215751ecd55dca2fa1a3cfd97a6fcf0509efe933 /src/menu_items.c | |
| parent | c902e200ab1b465f557b2e35c1cdc1a06a74eba8 (diff) | |
Surround support (#642)
* Added surround option.
* Added surround effect.
* Remove printf.
* fix.
---------
Co-authored-by: Lywx <kiritodev01@gmail.com>
Diffstat (limited to 'src/menu_items.c')
| -rw-r--r-- | src/menu_items.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/menu_items.c b/src/menu_items.c index 9838fd31e..6689142d6 100644 --- a/src/menu_items.c +++ b/src/menu_items.c @@ -384,11 +384,11 @@ char* gDebugScreenModeNames[] = { char* gDebugSoundModeNames[] = { "stereo", "head phone", - "xxx", + "surround", "monaural", }; -char* gSoundModeNames[NUM_SOUND_MODES] = { "STEREO", "HEADPHONE", "", "MONO" }; +char* gSoundModeNames[NUM_SOUND_MODES] = { "STEREO", "HEADPHONE", "SURROUND", "MONO" }; char* gWinLoseText[] = { "WINNER!", |
