From f92585f76bce0b8d1efc11d2b2020a0f516234c5 Mon Sep 17 00:00:00 2001 From: "P. F. Chimento" Date: Mon, 22 Nov 2010 23:14:19 +0100 Subject: [PATCH] Fixed minor bug in glk_image_get_info() --- libchimara/graphics.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libchimara/graphics.c b/libchimara/graphics.c index 7f59915..a8a0318 100644 --- a/libchimara/graphics.c +++ b/libchimara/graphics.c @@ -220,7 +220,7 @@ glk_image_get_info(glui32 image, glui32 *width, glui32 *height) if(width != NULL) *width = found->width; - if(width != NULL) + if(height != NULL) *height = found->height; return TRUE; } -- 2.30.2