From 42c2fc61b8f99275705cab90f9cd230c2934812a Mon Sep 17 00:00:00 2001 From: Paul Clothier Date: Sat, 28 Apr 2012 13:49:25 -0400 Subject: [PATCH] Fixed tier0 error and broken SourceTV detection on L4D1 (bug 5216, r=asherkin). --- core/HalfLife2.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core/HalfLife2.cpp b/core/HalfLife2.cpp index 2339e3fbd..12c135f6c 100644 --- a/core/HalfLife2.cpp +++ b/core/HalfLife2.cpp @@ -51,12 +51,12 @@ typedef ICommandLine *(*FakeGetCommandLine)(); #define TIER0_NAME "libtier0.dylib" #define VSTDLIB_NAME "libvstdlib.dylib" #elif defined __linux__ -#if SOURCE_ENGINE == SE_EPISODEONE || SOURCE_ENGINE == ORANGEBOX || SOURCE_ENGINE == SE_LEFT4DEAD -#define TIER0_NAME "tier0_i486.so" -#define VSTDLIB_NAME "vstdlib_i486.so" -#else -#define TIER0_NAME "libtier0.so" +#if SOURCE_ENGINE == SE_ORANGEBOXVALVE || SOURCE_ENGINE == SE_LEFT4DEAD || SOURCE_ENGINE == SE_LEFT4DEAD2 +#define TIER0_NAME "libtier0.so" #define VSTDLIB_NAME "libvstdlib.so" +#else +#define TIER0_NAME "tier0_i486.so" +#define VSTDLIB_NAME "vstdlib_i486.so" #endif #endif