mirror of
https://github.com/dhewm/dhewm3.git
synced 2025-04-06 01:56:30 +00:00
Fix scaling of renderDefs when anchored with cstAnchor
for my scale to 4:3 hack idRenderWindow::Draw() already calls if(dc->IsMenuScaleFixActive()) { dc->AdjustCoords(&x, &y, &w, &h); } and AdjustCoords() already takes the cst offsets into account, so all that was left to do was making idDeviceContext::IsMenuScaleFixActive() aware of the cst stuff
This commit is contained in:
parent
c30bff8c67
commit
3ee8ef55ef
1 changed files with 2 additions and 1 deletions
|
@ -108,7 +108,8 @@ public:
|
|||
// DG: this is used for the "make sure menus are rendered as 4:3" hack
|
||||
void SetMenuScaleFix(bool enable);
|
||||
bool IsMenuScaleFixActive() const {
|
||||
return fixOffsetForMenu.x != 0.0f || fixOffsetForMenu.y != 0.0f;
|
||||
// also using this for cstAdjustCoords, it basically means "you need to call AdjustCoords()
|
||||
return fixOffsetForMenu.x != 0.0f || fixOffsetForMenu.y != 0.0f || cstAdjustCoords;
|
||||
}
|
||||
|
||||
enum {
|
||||
|
|
Loading…
Reference in a new issue