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:
Daniel Gibson 2025-02-17 03:57:36 +01:00
parent c30bff8c67
commit 3ee8ef55ef

View file

@ -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 {