- fixed an issue with previous commit that undid some scaling code

This commit is contained in:
Rachael Alexanderson 2017-07-25 08:09:01 -04:00
parent 64e96c5f46
commit e0494b6f13
1 changed files with 2 additions and 2 deletions

View File

@ -334,8 +334,8 @@ CUSTOM_CVAR(Bool, swtruecolor, true, CVAR_ARCHIVE|CVAR_GLOBALCONFIG|CVAR_NOINITC
CUSTOM_CVAR (Bool, fullscreen, false, CVAR_ARCHIVE|CVAR_GLOBALCONFIG|CVAR_NOINITCALL)
{
NewWidth = screen->GetWidth();
NewHeight = screen->GetHeight();
NewWidth = screen->VideoWidth;
NewHeight = screen->VideoHeight;
NewBits = DisplayBits;
setmodeneeded = true;
}