Fix for goldsource running in fullscreen with resolution lower than screen's one (#67)

This commit is contained in:
Roman Chistokhodov 2018-11-29 15:22:17 +03:00 committed by Alibek Omarov
parent c4ed4ec3c0
commit 4dfdb6fc98
1 changed files with 3 additions and 1 deletions

View File

@ -212,7 +212,9 @@ void TeamFortressViewport::paintBackground()
// int wide, tall;
// getParent()->getSize( wide, tall );
// setSize( wide, tall );
gEngfuncs.VGui_ViewportPaintBackground(HUD_GetRect());
int extents[4];
getParent()->getAbsExtents(extents[0],extents[1],extents[2],extents[3]);
gEngfuncs.VGui_ViewportPaintBackground(extents);
}
void *TeamFortressViewport::operator new( size_t stAllocateBlock )