diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-04-26 20:35:05 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-04-26 20:35:05 +0000 |
commit | 430116a1d8acbc0ac843517b57f70b75fe56d9ae (patch) | |
tree | 6b0c368544ba99ac90830cbaae35794244aa8241 /audio/sdlaudio.c | |
parent | 1026f1336b1121ff3215fcef703cbcfe63a488fd (diff) |
debug fix
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1398 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'audio/sdlaudio.c')
-rw-r--r-- | audio/sdlaudio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/sdlaudio.c b/audio/sdlaudio.c index d6e13d03cc..978686a071 100644 --- a/audio/sdlaudio.c +++ b/audio/sdlaudio.c @@ -217,7 +217,7 @@ static void sdl_callback (void *opaque, Uint8 *buf, int len) static void sdl_hw_fini (HWVoice *hw) { ldebug ("sdl_hw_fini %d fixed=%d\n", - glob_sdl.initialized, audio_conf.fixed_format); + glob_sdl.initialized, audio_state.fixed_format); sdl_close (&glob_sdl); } @@ -229,7 +229,7 @@ static int sdl_hw_init (HWVoice *hw, int freq, int nchannels, audfmt_e fmt) int shift; ldebug ("sdl_hw_init %d freq=%d fixed=%d\n", - s->initialized, freq, audio_conf.fixed_format); + s->initialized, freq, audio_state.fixed_format); if (nchannels != 2) { dolog ("Bogus channel count %d\n", nchannels); |