mirror of
https://github.com/celisej567/mcpe.git
synced 2026-01-05 18:10:09 +03:00
* Gui: Use ratios instead of hardcoded sub-1 floating point values, to make the mechanism more clear.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user