From cc250f755b0172972aff26d62484c0292ad6fe9d Mon Sep 17 00:00:00 2001 From: radius Date: Sat, 5 Mar 2016 23:09:28 -0500 Subject: [PATCH] [zr] fix message --- menu/drivers/zr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/menu/drivers/zr.c b/menu/drivers/zr.c index 3b4fc8ecf3..0c54d0edd1 100644 --- a/menu/drivers/zr.c +++ b/menu/drivers/zr.c @@ -129,7 +129,7 @@ static struct zr_image zr_icon_load(const char *filename) int x,y,n; GLuint tex; unsigned char *data = stbi_load(filename, &x, &y, &n, 0); - if (!data) printf("[SDL]: failed to load image: %s", filename); + if (!data) printf("Failed to load image: %s\n", filename); glGenTextures(1, &tex); glBindTexture(GL_TEXTURE_2D, tex);