try to set resolution of your GUI application by
if ((res.Numerator / res.Denominator) < 1.55) // Not widescreen
{
width_ratio = 1024f;
height_ratio = 768f;
}
this value might get wrong at run time. Try to assign inside code,
Best luck
try to set resolution of your GUI application by
if ((res.Numerator / res.Denominator) < 1.55) // Not widescreen
{
width_ratio = 1024f;
height_ratio = 768f;
}
this value might get wrong at run time. Try to assign inside code,
Best luck