- Made 160x100 the minimum scaling, UI looks too big tough.

This commit is contained in:
drfrag666 2018-07-23 00:58:00 +02:00
parent 9fc839b34a
commit 03dbd1b4a7

View file

@ -58,7 +58,7 @@ namespace
bool isOutOfBounds(int x)
{
if (vScaleTable[x].isCustom)
return ((vid_scale_customwidth < 80) || (vid_scale_customheight < 50));
return ((vid_scale_customwidth < 160) || (vid_scale_customheight < 100));
return (x < 0 || x >= NUMSCALEMODES || vScaleTable[x].isValid == false);
}
}