aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNebuleon Fumika2012-12-27 18:10:31 -0500
committerNebuleon Fumika2012-12-27 18:10:31 -0500
commit963c3459e51264ccf0cc501a41e45de6e71eeea3 (patch)
tree7de5a6be55170fef6b0b096eac73112c4e07850c
parent6b36e79013d4c9273a96a9783a2bccdb516f174a (diff)
downloadsnes9x2005-963c3459e51264ccf0cc501a41e45de6e71eeea3.tar.gz
snes9x2005-963c3459e51264ccf0cc501a41e45de6e71eeea3.tar.bz2
snes9x2005-963c3459e51264ccf0cc501a41e45de6e71eeea3.zip
Accidentally committed the previous revision with sound functions emptied.
-rw-r--r--source/nds/entry.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/source/nds/entry.cpp b/source/nds/entry.cpp
index 1589c21..b4467a1 100644
--- a/source/nds/entry.cpp
+++ b/source/nds/entry.cpp
@@ -794,7 +794,6 @@ bool8 S9xOpenSoundDevice (int mode, bool8 stereo, int buffer_size)
void S9xGenerateSound ()
{
-#if 0
int bytes_so_far = so.sixteen_bit ? (so.samples_mixed_so_far << 1) :
so.samples_mixed_so_far;
@@ -856,12 +855,10 @@ void S9xGenerateSound ()
S9xProcessSound (0);
pending_signal = FALSE;
}
-#endif
}
void S9xProcessSound (unsigned int)
{
-#if 0
unsigned short *audiobuff;
if (!Settings.APUEnabled || so.mute_sound )
@@ -962,7 +959,6 @@ void S9xProcessSound (unsigned int)
}
so.samples_mixed_so_far -= sample_count;
-#endif
}
void Init_Timer (void)