aboutsummaryrefslogtreecommitdiff
path: root/source/nds/entry.cpp
diff options
context:
space:
mode:
authorNebuleon Fumika2013-02-05 16:05:16 -0500
committerNebuleon Fumika2013-02-05 16:05:16 -0500
commit3cd1e0327898acf0bd09a035c7a68c7362bb07c0 (patch)
tree81a4d6324f6443cd121e9eee0fcc67c5e73310f3 /source/nds/entry.cpp
parentdfa2d3cc68616ddc7e5c5fd1bb9f250fa44cd2fd (diff)
downloadsnes9x2005-3cd1e0327898acf0bd09a035c7a68c7362bb07c0.tar.gz
snes9x2005-3cd1e0327898acf0bd09a035c7a68c7362bb07c0.tar.bz2
snes9x2005-3cd1e0327898acf0bd09a035c7a68c7362bb07c0.zip
Change the upper screen updates to be double-buffered. Require that one audio buffer be free (1 out of 4).
Diffstat (limited to 'source/nds/entry.cpp')
-rw-r--r--source/nds/entry.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/nds/entry.cpp b/source/nds/entry.cpp
index de30332..18802a0 100644
--- a/source/nds/entry.cpp
+++ b/source/nds/entry.cpp
@@ -987,7 +987,7 @@ void S9xProcessSound (unsigned int)
unsigned int Now = getSysTime();
if (Now - LastSoundEmissionTime >= SOUND_EMISSION_INTERVAL)
{
- if(ds2_checkAudiobuff() > 4)
+ if(ds2_checkAudiobuff() > AUDIO_BUFFER_COUNT - 1)
{
LastSoundEmissionTime++;
return;