From 4fa18acc7ae4dce8170868a7f0f5db30f5200146 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Thu, 28 Jul 2011 22:16:14 -0700 Subject: [PATCH] Fix an errant WINELESS check --- dsound_main.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/dsound_main.c b/dsound_main.c index 40fa2bf..e4657cf 100644 --- a/dsound_main.c +++ b/dsound_main.c @@ -228,13 +228,10 @@ BOOL local_contexts; static void load_libopenal(void) { -#ifdef WINELESS +#ifndef __WINESRC__ const char *str = getenv("DSOAL_LOGLEVEL"); if(str && *str) LogLevel = atoi(str); - - if(0) { - } #elif defined(SONAME_LIBOPENAL) BOOL failed = FALSE; char error[128]; -- 2.11.4.GIT