Downsize bigfont from 3x to 2x.

This commit is contained in:
Mari the Deer 2022-04-04 14:23:38 +02:00
commit 568e7607d6
8 changed files with 27 additions and 27 deletions

View file

@ -511,7 +511,7 @@ extend Class SWWMHandler
// cheat input
if ( (kcode <= 4) && ((klinger < gametic) || (klingerstr == "")) )
return;
double hs = max(min(floor(Screen.GetWidth()/640.),floor(Screen.GetHeight()/266.)),1.);
double hs = max(floor(Screen.GetWidth()/480.),1.);
Vector2 ss = (Screen.GetWidth(),Screen.GetHeight())/hs;
String chstr = (kcode>4)?kstr.Mid(4):klingerstr.Mid(4);
double alph = clamp((klinger-(gametic+e.fractic))/20.,0.,1.);