diff options
| author | victorfisac <victorfisac@gmail.com> | 2016-01-04 19:28:52 +0100 |
|---|---|---|
| committer | victorfisac <victorfisac@gmail.com> | 2016-01-04 19:28:52 +0100 |
| commit | 0c539cbf320bf50309704ad768b2dfad4cd7a67a (patch) | |
| tree | 430b94524164208e5a1c856d03db82bb51e2739c /src/textures.c | |
| parent | 1656d17b22b362e54710b7164638464e02bd7e5a (diff) | |
| parent | 70d405b41bcbbd73b9f752f4dc3910100abd1a36 (diff) | |
| download | raylib-0c539cbf320bf50309704ad768b2dfad4cd7a67a.tar.gz raylib-0c539cbf320bf50309704ad768b2dfad4cd7a67a.zip | |
Merge remote-tracking branch 'refs/remotes/raysan5/develop' into develop
Diffstat (limited to 'src/textures.c')
| -rw-r--r-- | src/textures.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/textures.c b/src/textures.c index 30ffb945..f03d2d9a 100644 --- a/src/textures.c +++ b/src/textures.c @@ -1271,9 +1271,9 @@ void GenTextureMipmaps(Texture2D texture) { TraceLog(WARNING, "Limited NPOT support, no mipmaps available for NPOT textures"); } - else rlglGenerateMipmaps(texture.id); + else rlglGenerateMipmaps(texture); #else - rlglGenerateMipmaps(texture.id); + rlglGenerateMipmaps(texture); #endif } |
