summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2020-07-13 18:57:46 +0200
committerraysan5 <[email protected]>2020-07-13 18:57:46 +0200
commitbf429a005805951e8c8bc3c23ae51f2e1ede1805 (patch)
treeee232f087c2407e6ad0de5ea3bc6a40f57dc6172 /src
parent4de362b405f832ca4a87caf23811af0f9096ff12 (diff)
downloadraylib-bf429a005805951e8c8bc3c23ae51f2e1ede1805.tar.gz
raylib-bf429a005805951e8c8bc3c23ae51f2e1ede1805.zip
Remove conditional __EMSCRIPTEN__
Not required anymore
Diffstat (limited to 'src')
-rw-r--r--src/raudio.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/raudio.c b/src/raudio.c
index 9f8d8317..6f472027 100644
--- a/src/raudio.c
+++ b/src/raudio.c
@@ -422,9 +422,6 @@ void InitAudioDevice(void)
config.sampleRate = AUDIO_DEVICE_SAMPLE_RATE;
config.dataCallback = OnSendAudioDataToDevice;
config.pUserData = NULL;
-#if defined(__EMSCRIPTEN__)
- config.periodSizeInMilliseconds = 33;
-#endif
result = ma_device_init(&AUDIO.System.context, &config, &AUDIO.System.device);
if (result != MA_SUCCESS)