From 64de526267241a4c2455873b6e9803d57fff4c46 Mon Sep 17 00:00:00 2001 From: ehofman Date: Mon, 30 Nov 2009 09:31:55 +0000 Subject: [PATCH] Fix for older OpenAL versions. --- tests/alcinfo.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/alcinfo.c b/tests/alcinfo.c index 1d85ddd68..acc40a22d 100644 --- a/tests/alcinfo.c +++ b/tests/alcinfo.c @@ -33,9 +33,14 @@ # endif #endif +#include #include #include +#ifndef ALC_ALL_DEVICES_SPECIFIER +# define ALC_ALL_DEVICES_SPECIFIER 0x1013 +#endif + #define MAX_DATA 16 static const int indentation = 4; static const int maxmimumWidth = 79; -- 2.39.5