diff options
| author | raysan5 <[email protected]> | 2017-04-23 19:27:48 +0200 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2017-04-23 19:27:48 +0200 |
| commit | 0b869948c6896364c75b470f93398d4cc31adaf3 (patch) | |
| tree | 0eec761fcda0c59fcdfd5d6ab4ade985c040faac /src/textures.c | |
| parent | 332f3b4f9d58eabf54f44a348de24d73d728f560 (diff) | |
| download | raylib-0b869948c6896364c75b470f93398d4cc31adaf3.tar.gz raylib-0b869948c6896364c75b470f93398d4cc31adaf3.zip | |
TraceLog() output tweak
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 7013038d..6c56d6c5 100644 --- a/src/textures.c +++ b/src/textures.c @@ -380,7 +380,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.width, texture.height, texture.mipmaps, texture.format); + TraceLog(INFO, "[TEX %i] Parameters: %ix%i, %i mips, format %i", texture.id, texture.width, texture.height, texture.mipmaps, texture.format); return texture; } |
