diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-04-11 23:44:37 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-04-11 23:44:37 +0000 |
commit | bbf84374a5893e076f6c1785f850f64d8fe69a3d (patch) | |
tree | c21df1e7647db7d0590a372b4544f8219a3f41de /src/audio.h | |
parent | 26f72edc468b235ee735821be54856ccfce87fbd (diff) | |
download | mpd-bbf84374a5893e076f6c1785f850f64d8fe69a3d.tar.gz mpd-bbf84374a5893e076f6c1785f850f64d8fe69a3d.tar.xz mpd-bbf84374a5893e076f6c1785f850f64d8fe69a3d.zip |
more volatile stuff
git-svn-id: https://svn.musicpd.org/mpd/trunk@699 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/audio.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/audio.h b/src/audio.h index 917644f15..9a4bb10cf 100644 --- a/src/audio.h +++ b/src/audio.h @@ -28,9 +28,9 @@ #define AUDIO_AO_DRIVER_DEFAULT "default" typedef struct _AudioFormat { - mpd_sint8 channels; - mpd_uint32 sampleRate; - mpd_sint8 bits; + mpd_sint8 volatile channels; + mpd_uint32 volatile sampleRate; + mpd_sint8 volatile bits; } AudioFormat; void initAudioDriver(); |