From 1c9cc716cd3bd29dbada5cca299787aa20d2a0e3 Mon Sep 17 00:00:00 2001 From: Colby Klein Date: Mon, 14 Mar 2011 03:05:30 -0700 Subject: [PATCH] ...I broke one of these. Fixed now. --- src/RageDisplay_Legacy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/RageDisplay_Legacy.cpp b/src/RageDisplay_Legacy.cpp index 6c023bec58..597f4f76bd 100644 --- a/src/RageDisplay_Legacy.cpp +++ b/src/RageDisplay_Legacy.cpp @@ -1538,7 +1538,7 @@ void RageDisplay_Legacy::DrawLineStripInternal( const RageSpriteVertex v[], int static bool SetTextureUnit( TextureUnit tu ) { // If multitexture isn't supported, ignore all textures except for 0. - if (GLEW_ARB_multitexture) + if (!GLEW_ARB_multitexture && tu != TextureUnit_1) return false; if ((int) tu > g_iMaxTextureUnits)