* Gui: Use ratios instead of hardcoded sub-1 floating point values, to make the mechanism more clear.

This commit is contained in:
iProgramInCpp
2023-08-06 12:03:06 +03:00
parent 31a3d5f7c1
commit e073665644

View File

@@ -15,9 +15,9 @@
#endif
#ifdef ENH_USE_GUI_SCALE_2
float Gui::InvGuiScale = 0.5f;
float Gui::InvGuiScale = 1.0f / 2.0f;
#else
float Gui::InvGuiScale = 0.333333f;
float Gui::InvGuiScale = 1.0f / 3.0f;
#endif
Gui::Gui(Minecraft* pMinecraft)