From 5828c0a4e5b9e8e3013ae434e82010c8a22f2fb1 Mon Sep 17 00:00:00 2001
From: SDL Wiki Bot <[EMAIL REDACTED]>
Date: Mon, 20 Jun 2022 02:17:11 +0000
Subject: [PATCH] Sync SDL_mixer wiki -> header
---
include/SDL_mixer.h | 9 ---------
1 file changed, 9 deletions(-)
diff --git a/include/SDL_mixer.h b/include/SDL_mixer.h
index 19f91e87..03c3f823 100644
--- a/include/SDL_mixer.h
+++ b/include/SDL_mixer.h
@@ -346,15 +346,6 @@ extern DECLSPEC void SDLCALL Mix_FreeMusic(Mix_Music *music);
* call Mix_OpenAudio() before calling these functions. This API is only
* available in SDL_mixer 1.2.9 and later.
*
- * ```c
- * // usage...
- * int i;
- * const int total = Mix_GetNumChunkDecoders();
- * for (i = 0; i < total; i++) {
- * printf("Supported chunk decoder: [%s]\n", Mix_GetChunkDecoder(i));
- * }
- * ```
- *
* Appearing in this list doesn't promise your specific audio file will
* decode...but it's handy to know if you have, say, a functioning Timidity
* install.