Merge branch 'fix-message-box-height' into 'master'

Menus: fix multi-line message box text not fitting in the box

See merge request KartKrew/Kart!2042
This commit is contained in:
SteelT 2024-03-09 03:32:38 +00:00
commit 40bc2250f3

View file

@ -918,7 +918,7 @@ void M_DrawMenuMessage(void)
}
V_DrawString((BASEVIDWIDTH - V_StringWidth(string, 0))/2, y, 0, string);
y += 9;
y += 8;
}
}