mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-06 01:11:59 +00:00
[console] Clamp min charbuf size to 1x1
Prevents a segfault when the window is ultra-tiny (eg, 80x45 pixels)
This commit is contained in:
parent
dfcad353fb
commit
91dd9d3dfa
1 changed files with 2 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue