forked from cafeberry/cafeberry
fix: m_fScreen Width & Height missing .0f for 8th gen consoles
This commit is contained in:
@@ -182,8 +182,8 @@ UIController::UIController()
|
||||
|
||||
// 4J Stu - This is a bit of a hack until we change the Minecraft initialisation to store the proper screen size for other platforms
|
||||
#if defined _DURANGO || defined __ORBIS__
|
||||
m_fScreenWidth = 1920;
|
||||
m_fScreenHeight = 1080;
|
||||
m_fScreenWidth = 1920.0f;
|
||||
m_fScreenHeight = 1080.0f;
|
||||
m_bScreenWidthSetup = true;
|
||||
#elif _WINDOWS64
|
||||
m_fScreenWidth = g_iScreenWidth;
|
||||
|
||||
Reference in New Issue
Block a user