diff options
| author | Ray <[email protected]> | 2022-04-24 00:29:15 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2022-04-24 00:29:15 +0200 |
| commit | ff95f05386e6836701ba83d77e3e075b853630dc (patch) | |
| tree | 10ed5a440d7e0917dba61ea0c1c05d84374a3056 | |
| parent | 47d768c3d653ae15fe006e9ec2f9515e8e416ce6 (diff) | |
| download | raylib-ff95f05386e6836701ba83d77e3e075b853630dc.tar.gz raylib-ff95f05386e6836701ba83d77e3e075b853630dc.zip | |
Update rlgl.h
| -rw-r--r-- | src/rlgl.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1537,7 +1537,7 @@ void rlTextureParameters(unsigned int id, int param, int value) if (value <= RLGL.ExtSupported.maxAnisotropyLevel) glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAX_ANISOTROPY_EXT, (float)value); else if (RLGL.ExtSupported.maxAnisotropyLevel > 0.0f) { - TRACELOG(RL_LOG_WARNING, "GL: Maximum anisotropic filter level supported is %iX", id, RLGL.ExtSupported.maxAnisotropyLevel); + TRACELOG(RL_LOG_WARNING, "GL: Maximum anisotropic filter level supported is %iX", id, (int)RLGL.ExtSupported.maxAnisotropyLevel); glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAX_ANISOTROPY_EXT, (float)value); } else TRACELOG(RL_LOG_WARNING, "GL: Anisotropic filtering not supported"); |
