diff options
Diffstat (limited to 'code/client/qal.c')
-rw-r--r-- | code/client/qal.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/code/client/qal.c b/code/client/qal.c index a01c915..a958e7c 100644 --- a/code/client/qal.c +++ b/code/client/qal.c @@ -27,6 +27,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #include "qal.h" +#ifdef USE_OPENAL_DLOPEN #if defined _WIN32 #include <windows.h> #define OBJTYPE HMODULE @@ -340,5 +341,12 @@ void QAL_Shutdown( void ) qalcGetString = NULL; qalcGetIntegerv = NULL; } - +#endif +qboolean QAL_Init(const char *libname) +{ + return qtrue; +} +void QAL_Shutdown( void ) +{ +} #endif |