diff options
author | malc <malc@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-11-04 19:15:37 +0000 |
---|---|---|
committer | malc <malc@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-11-04 19:15:37 +0000 |
commit | d64394f7c1aa61dcbab0da704a456b494c5adf14 (patch) | |
tree | ba6ace5964184fda1f629d60ca4d1da88c8a5e59 /audio | |
parent | e00fcff7106acaa0062b155524fd62684b0e0193 (diff) | |
download | hqemu-d64394f7c1aa61dcbab0da704a456b494c5adf14.zip hqemu-d64394f7c1aa61dcbab0da704a456b494c5adf14.tar.gz |
Set default audio timer period to a sane value (otherwise qemu becomes unusable if -icount N is specified)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5623 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'audio')
-rw-r--r-- | audio/audio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/audio.c b/audio/audio.c index b3ac10e..79d8b20 100644 --- a/audio/audio.c +++ b/audio/audio.c @@ -84,7 +84,7 @@ static struct { } }, - { 0 }, /* period */ + { 250 }, /* period */ 0, /* plive */ 0 /* log_to_monitor */ }; |