[console] Clamp min charbuf size to 1x1

Prevents a segfault when the window is ultra-tiny (eg, 80x45 pixels)
This commit is contained in:
Bill Currie 2024-01-02 17:02:40 +09:00
parent dfcad353fb
commit 91dd9d3dfa

View file

@ -677,6 +677,8 @@ resize_console_text (view_t view, view_pos_t len)
int width = len.x / 8;
int height = len.y / 8;
width = max (width, 1);
height = max (height, 1);
if (console_buffer->width != width || console_buffer->height != height) {
con_linewidth = width;
Draw_DestroyBuffer (console_buffer);