- add some /0 guards in the load/save menu to prevent VM aborts

This commit is contained in:
Rachael Alexanderson 2019-03-11 20:19:40 -04:00
parent 2d5210ccf2
commit fd4295b38c
1 changed files with 2 additions and 2 deletions

View File

@ -126,8 +126,8 @@ class LoadSaveMenu : ListMenu
savepicWidth = 216*screen.GetWidth() / 640;
savepicHeight = 135*screen.GetHeight() / 400;
FontScale = screen.GetHeight() / 480;
rowHeight = (NewConsoleFont.GetHeight() + 1) * FontScale;
FontScale = max(screen.GetHeight() / 480, 1);
rowHeight = max((NewConsoleFont.GetHeight() + 1) * FontScale, 1);
listboxLeft = savepicLeft + savepicWidth + 14;
listboxTop = savepicTop;