diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-11-14 19:57:29 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-11-14 19:57:29 +0000 |
commit | 102a52e4712aeac3bad0ed25755ff2c96f4ff794 (patch) | |
tree | 776813eaea38c016e9ba234abecbfd2eb483017d /audio | |
parent | c76338c34f807458c299c44f43e41d276d84e6e8 (diff) |
FMOD configure options (malc)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1147 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'audio')
-rw-r--r-- | audio/audio.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/audio/audio.c b/audio/audio.c index 80170b96d4..661771e82e 100644 --- a/audio/audio.c +++ b/audio/audio.c @@ -24,7 +24,6 @@ #include <assert.h> #include "vl.h" -#define USE_SDL_AUDIO #define USE_WAV_AUDIO #include "audio/audio_int.h" @@ -779,7 +778,7 @@ static struct audio_output_driver *drvtab[] = { #ifdef CONFIG_OSS &oss_output_driver, #endif -#ifdef USE_FMOD_AUDIO +#ifdef CONFIG_FMOD &fmod_output_driver, #endif #ifdef CONFIG_SDL |