summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound.c
diff options
context:
space:
mode:
author Couriersud <couriersud@users.noreply.github.com>2009-10-11 19:11:40 +0000
committer Couriersud <couriersud@users.noreply.github.com>2009-10-11 19:11:40 +0000
commit3fb3e9a7af7a627a15e8124487b24fc23a97d455 (patch)
tree8b3c1a66b7fec8b32889a74a54681ff02437e59a /src/emu/sound.c
parentb971b5928749dc8ae893047bdfba15d20d25f06f (diff)
Renamed STREAM_UPDATE_FREQUENCY to STREAM_UPDATE_ATTOTIME
STREAM_UPDATE_FREQUENCY now reflects the frequency.
Diffstat (limited to 'src/emu/sound.c')
-rw-r--r--src/emu/sound.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/sound.c b/src/emu/sound.c
index e11b07d9694..d0a22211739 100644
--- a/src/emu/sound.c
+++ b/src/emu/sound.c
@@ -209,7 +209,7 @@ void sound_init(running_machine *machine)
/* allocate a global timer for sound timing */
global->update_timer = timer_alloc(machine, sound_update, NULL);
- timer_adjust_periodic(global->update_timer, STREAMS_UPDATE_FREQUENCY, 0, STREAMS_UPDATE_FREQUENCY);
+ timer_adjust_periodic(global->update_timer, STREAMS_UPDATE_ATTOTIME, 0, STREAMS_UPDATE_ATTOTIME);
/* finally, do all the routing */
VPRINTF(("route_sound\n"));