From cf18ea9a736cda09398fb2b177cf2ea3752a8647 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 16 Oct 2004 21:12:29 +0000 Subject: [PATCH] fix precedence --- stepmania/src/RageDisplay_OGL.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/RageDisplay_OGL.cpp b/stepmania/src/RageDisplay_OGL.cpp index f77191c14d..b3ea739945 100644 --- a/stepmania/src/RageDisplay_OGL.cpp +++ b/stepmania/src/RageDisplay_OGL.cpp @@ -1775,7 +1775,7 @@ unsigned RageDisplay_OGL::CreateTexture( { ostringstream s; - s << bGenerateMipMaps? "gluBuild2DMipmaps":"glTexImage2D"; + s << (bGenerateMipMaps? "gluBuild2DMipmaps":"glTexImage2D"); s << "(format " << GLToString(glTexFormat) << ", " << img->w << "x" << img->h << ", format " << GLToString(glImageFormat) <<