We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7568a18 commit ead3829Copy full SHA for ead3829
panim/panim.c
@@ -98,14 +98,6 @@ void ffmpeg_play_sound(Sound _sound, Wave wave)
98
{
99
(void)_sound;
100
101
- if (!(wave.sampleRate == 48000 || wave.sampleRate == 44100)) {
102
- TraceLog(LOG_ERROR,
103
- "Animation tried to play a sound with a weird sample rate %dhz. "
104
- "Traditionally sample rates are either 48000hz or 44100hz.",
105
- wave.sampleRate);
106
- return;
107
- }
108
-
109
if (!(wave.sampleSize == 8 || wave.sampleSize == 16 || wave.sampleSize == 32)) {
110
TraceLog(LOG_ERROR,
111
"Animation tried to play a sound with a weird sample size of %d bits. "
0 commit comments