Fix some coverity warnings

This commit is contained in:
twinaphex 2017-04-29 19:22:44 +02:00
parent 17827940fd
commit 46bae549ac

View File

@ -497,7 +497,7 @@ static void gl_raster_font_render_msg(
gl_raster_font_render_message(font, msg, scale, color, x, y, text_align); gl_raster_font_render_message(font, msg, scale, color, x, y, text_align);
} }
if (!font->block) if (!font->block && font->gl)
gl_raster_font_restore_viewport(width, height, font->gl, false); gl_raster_font_restore_viewport(width, height, font->gl, false);
} }
@ -524,7 +524,9 @@ static void gl_raster_font_flush_block(unsigned width, unsigned height,
gl_raster_font_setup_viewport(width, height, font, block->fullscreen); gl_raster_font_setup_viewport(width, height, font, block->fullscreen);
gl_raster_font_draw_vertices(font, (video_coords_t*)&block->carr.coords); gl_raster_font_draw_vertices(font, (video_coords_t*)&block->carr.coords);
gl_raster_font_restore_viewport(width, height, font->gl, block->fullscreen);
if (font->gl)
gl_raster_font_restore_viewport(width, height, font->gl, block->fullscreen);
} }
static void gl_raster_font_bind_block(void *data, void *userdata) static void gl_raster_font_bind_block(void *data, void *userdata)