about summary refs log tree commit diff
path: root/src/engine/client/graphics.cpp
diff options
context:
space:
mode:
authoroy <Tom_Adams@web.de>2012-01-08 13:57:40 +0100
committeroy <Tom_Adams@web.de>2012-01-08 13:57:40 +0100
commit672b70e9b98fa7718570047d03dddb3212a119ff (patch)
treede494f35475d99f1fec57aa15b1656f47cc8b4a0 /src/engine/client/graphics.cpp
parent57a975f38e2021fa5a0c7581249003038690a7a3 (diff)
downloadzcatch-672b70e9b98fa7718570047d03dddb3212a119ff.tar.gz
zcatch-672b70e9b98fa7718570047d03dddb3212a119ff.zip
fixed some line endings
Diffstat (limited to 'src/engine/client/graphics.cpp')
-rw-r--r--src/engine/client/graphics.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/client/graphics.cpp b/src/engine/client/graphics.cpp
index 5baff939..bb52e1b8 100644
--- a/src/engine/client/graphics.cpp
+++ b/src/engine/client/graphics.cpp
@@ -199,13 +199,13 @@ void CGraphics_OpenGL::BlendAdditive()
 
 void CGraphics_OpenGL::WrapNormal()
 {
-	glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);

+	glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
 	glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
 }
 
 void CGraphics_OpenGL::WrapClamp()
 {
-	glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);

+	glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
 	glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
 }