diff options
Diffstat (limited to 'image.c')
-rw-r--r-- | image.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -62,6 +62,10 @@ getCharSize() pixel_per_char = (double)ppc; pixel_per_line = (double)ppl; } + else { + pixel_per_char_i = (int)pixel_per_char; + pixel_per_line_i = (int)pixel_per_line; + } return TRUE; } |