From 1591354dcf3d1d5ba5bdfd713c8e6342d3fb1251 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Tschumperl=C3=A9?= <david.tschumperle@gmail.com> Date: Mon, 15 Oct 2018 18:19:21 +0200 Subject: [PATCH] . --- CImg.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/CImg.h b/CImg.h index db44241..49a17dd 100644 --- a/CImg.h +++ b/CImg.h @@ -60368,10 +60368,8 @@ namespace cimg_library_suffixed { // Render requested font. if (!font) { -// const unsigned int padding_x = requested_height<=32U?1U:requested_height<64U?2U:requested_height<128U?3U:4U; - - const unsigned int padding_x = requested_height<=13?1U:requested_height<=32?0U:requested_height<=64U?1U:requested_height<=128?2U:3U; - + const unsigned int padding_x = requested_height<=13?1U:requested_height<=32?0U: + requested_height<=64U?1U:requested_height<=128?2U:3U; is_variable_widths[ind] = is_variable_width; font = basef.get_split('x',256); if (requested_height!=font[0]._height) -- GitLab