commit 8aa6708cd5cf84b6d538ccd4a918194b4656c64e parent ca0155b032468af8c9dec4b0418320aac77c006a Author: Frederic Cambus <fred@statdns.com> Date: Thu, 18 Oct 2018 14:02:59 +0200 We memset the structure to 0 so this is not required anymore Diffstat:
M | src/init.c | | | 3 | --- |
1 file changed, 0 insertions(+), 3 deletions(-)
diff --git a/src/init.c b/src/init.c @@ -18,7 +18,4 @@ ansilove_init(struct ansilove_ctx *ctx, struct ansilove_options *options) { // default to 8 if bits option is not specified options->bits = 8; - - // default to 0 if retinaScaleFactor option is not specified - options->retinaScaleFactor = 0; }