mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 06:05:38 +00:00
Fixed multiple single-pixel menu alignment issues at lower resolutions.
This commit is contained in:
parent
d3b135e387
commit
b89df021b1
|
@ -40,7 +40,7 @@ public:
|
|||
glm::vec2 getMenuSize() { return mMenu.getSize(); }
|
||||
void setMenuSize(glm::vec2 size) { mMenu.setSize(size); }
|
||||
glm::vec3 getMenuPosition() { return mMenu.getPosition(); }
|
||||
void setMenuPosition(glm::vec3 position) { mMenu.setPosition(position); }
|
||||
void setMenuPosition(glm::vec3 position) { mMenu.setPosition(glm::round(position)); }
|
||||
|
||||
void setNeedsSaving(bool state = true) { mNeedsSaving = state; }
|
||||
void setNeedsReloadHelpPrompts() { mNeedsReloadHelpPrompts = true; }
|
||||
|
|
Loading…
Reference in a new issue