diff options
| author | Ray <[email protected]> | 2017-05-10 19:37:48 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2017-05-10 19:37:48 +0200 |
| commit | 93e2fd8ea1b62cedb74f5d30c005676ae78cc004 (patch) | |
| tree | 7ff7288b6935a00ca2447e1d2bbc32ce4e32da91 /src/textures.c | |
| parent | 16842233c92cec78bb3771c711269b43be33c241 (diff) | |
| download | raylib-93e2fd8ea1b62cedb74f5d30c005676ae78cc004.tar.gz raylib-93e2fd8ea1b62cedb74f5d30c005676ae78cc004.zip | |
Some tweaks
Diffstat (limited to 'src/textures.c')
| -rw-r--r-- | src/textures.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textures.c b/src/textures.c index f1b979d7..81d36ef8 100644 --- a/src/textures.c +++ b/src/textures.c @@ -385,7 +385,7 @@ Texture2D LoadTextureFromImage(Image image) texture.mipmaps = image.mipmaps; texture.format = image.format; - TraceLog(INFO, "[TEX %i] Parameters: %ix%i, %i mips, format %i", texture.id, texture.width, texture.height, texture.mipmaps, texture.format); + TraceLog(DEBUG, "[TEX ID %i] Parameters: %ix%i, %i mips, format %i", texture.id, texture.width, texture.height, texture.mipmaps, texture.format); return texture; } |
