From f24239e50f3359c9fda0909a8175f21c61eb810f Mon Sep 17 00:00:00 2001 From: ths Date: Sun, 2 Dec 2007 17:47:33 +0000 Subject: [PATCH] Include qemu-timer.h iff DEBUG is defined. --- hw/adlib.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/hw/adlib.c b/hw/adlib.c index cbe8300ec6..1376db919f 100644 --- a/hw/adlib.c +++ b/hw/adlib.c @@ -21,13 +21,20 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ + #include #include "hw.h" #include "audiodev.h" #include "audio/audio.h" +//#define DEBUG + #define ADLIB_KILL_TIMERS 1 +#ifdef DEBUG +#include "qemu-timer.h" +#endif + #define dolog(...) AUD_log ("adlib", __VA_ARGS__) #ifdef DEBUG #define ldebug(...) dolog (__VA_ARGS__) -- 2.11.4.GIT