summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRay <[email protected]>2021-03-03 19:49:10 +0100
committerRay <[email protected]>2021-03-03 19:49:10 +0100
commit0b108c2087c7e690993f1f25647fd840f9f39aaa (patch)
tree13ffcb0058fc2b788d433b45b3413b7fb6faabc6
parentdfe797060abe25f5f17a875bdb5168b2e0c654f7 (diff)
downloadraylib-0b108c2087c7e690993f1f25647fd840f9f39aaa.tar.gz
raylib-0b108c2087c7e690993f1f25647fd840f9f39aaa.zip
Corrected bug
-rw-r--r--src/rlgl.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/rlgl.h b/src/rlgl.h
index 21cea8ca..4fba9736 100644
--- a/src/rlgl.h
+++ b/src/rlgl.h
@@ -1382,7 +1382,6 @@ void rlTextureParameters(unsigned int id, int param, int value)
case RL_TEXTURE_WRAP_S:
case RL_TEXTURE_WRAP_T:
{
- if (value == RL_WRAP_MIRROR_CLAMP)
if (value == RL_TEXTURE_WRAP_MIRROR_CLAMP)
{
#if !defined(GRAPHICS_API_OPENGL_11)