diff options
| -rw-r--r-- | src/rtextures.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/rtextures.c b/src/rtextures.c index efa91df9..52e6dd2d 100644 --- a/src/rtextures.c +++ b/src/rtextures.c @@ -3874,15 +3874,13 @@ TextureCubemap LoadTextureCubemap(Image image, int layout) // NOTE: Cubemap data is expected to be provided as 6 images in a single data array, // one after the other (that's a vertical image), following convention: +X, -X, +Y, -Y, +Z, -Z cubemap.id = rlLoadTextureCubemap(faces.data, size, faces.format); - if (cubemap.id == 0) - { - TRACELOG(LOG_WARNING, "IMAGE: Failed to load cubemap image"); - } - else + + if (cubemap.id != 0) { cubemap.format = faces.format; cubemap.mipmaps = 1; } + else TRACELOG(LOG_WARNING, "IMAGE: Failed to load cubemap image"); UnloadImage(faces); } |
