Skip to content

Commit

Permalink
Fix Menu Bottom Padding calc
Browse files Browse the repository at this point in the history
  • Loading branch information
UndeadZeratul committed Dec 19, 2023
1 parent 029da8e commit c26e978
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zscript/accensus/merchant/menu/merchantMenu.zsc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class MerchantShopMenu : MerchZFGenericMenu {
SetBaseResolution(virtRes);

vector2 basePos = (virtRes.x * 0.1, 10);
vector2 sSize = (virtRes.x - basePos.x * 2, virtRes.y - SmallFont.GetHeight() + (Spacing * 2.0));
vector2 sSize = (virtRes.x - basePos.x * 2, virtRes.y - SmallFont.GetHeight() - (Spacing * 2.0));
BuildShopFrame(basePos, sSize);
}

Expand Down

0 comments on commit c26e978

Please sign in to comment.