mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-01-18 22:51:39 +00:00
- Made 160x100 the minimum scaling, UI looks too big tough.
This commit is contained in:
parent
9fc839b34a
commit
03dbd1b4a7
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue