diff options
author | bellard | 2004-11-10 00:09:44 +0100 |
---|---|---|
committer | bellard | 2004-11-10 00:09:44 +0100 |
commit | fb065187e4ee9e0d1709b344ec01bb426ff1e43b (patch) | |
tree | ca7bf5ed6f0731429b9f9b6d62f2993583c9bcfb /hw/adlib.c | |
parent | disabled again register usage for ppc because my previous patch seems still b... (diff) | |
download | qemu-fb065187e4ee9e0d1709b344ec01bb426ff1e43b.tar.gz qemu-fb065187e4ee9e0d1709b344ec01bb426ff1e43b.tar.xz qemu-fb065187e4ee9e0d1709b344ec01bb426ff1e43b.zip |
audio clean up (initial patch by malc)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1131 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/adlib.c')
-rw-r--r-- | hw/adlib.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/hw/adlib.c b/hw/adlib.c index a49b32b53d..939a7ed036 100644 --- a/hw/adlib.c +++ b/hw/adlib.c @@ -23,8 +23,12 @@ */ #include "vl.h" -#define AUDIO_CAP "adlib" -#include "audio/audio.h" +#define dolog(...) AUD_log ("adlib", __VA_ARGS__) +#ifdef DEBUG +#define ldebug(...) dolog (__VA_ARGS__) +#else +#define ldebug(...) +#endif #ifdef USE_YMF262 #define HAS_YMF262 1 |