sixel: set a huge default max geom

This commit is contained in:
nick black 2021-04-12 02:17:06 -04:00
parent e7ca10804d
commit c7fca301e8
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

View File

@ -331,7 +331,8 @@ setup_sixel(tinfo* ti){
ti->color_registers = 256; // assumed default [shrug]
ti->pixel_init = sprite_sixel_init;
ti->pixel_draw = sixel_draw;
ti->sixel_maxx = ti->sixel_maxy = 0;
ti->sixel_maxx = 4096; // whee!
ti->sixel_maxy = 4096;
ti->pixel_destroy = sixel_delete;
}