fix: vita skin on windows64 & make cursor the lce pointer

This commit is contained in:
2026-08-23 23:23:02 -04:00
parent a43edb9faa
commit 1f3664da94
8 changed files with 69 additions and 17 deletions
+18 -14
View File
@@ -512,28 +512,32 @@ void UIController::loadSkins()
{
platformSkinPath = L"skinHDWin.swf";
}
else if (m_fScreenWidth >= 960.0f && m_fScreenWidth < 1280.0f) //str1k3r - we need to check this to make sure we dont load the vita skin on 720p
{
platformSkinPath = L"skinWinVita.swf";
}
else
{
platformSkinPath = L"skinWin.swf";
}
#elif defined _DURANGO
if(m_fScreenHeight==1080.0f)
{
//if(m_fScreenHeight==1080.0f)
//{
platformSkinPath = L"skinHDDurango.swf";
}
else
{
platformSkinPath = L"skinDurango.swf";
}
//}
//else
//{
// platformSkinPath = L"skinDurango.swf";
//}
#elif defined __ORBIS__
if(m_fScreenHeight==1080.0f)
{
//if(m_fScreenHeight==1080.0f)
//{
platformSkinPath = L"skinHDOrbis.swf";
}
else
{
platformSkinPath = L"skinOrbis.swf";
}
//}
//else
//{
// platformSkinPath = L"skinOrbis.swf";
//}
#endif