Merge pull request #31 from yuri-kiss/main

fix: ps3 build error
This commit is contained in:
void_17 2026-03-02 00:59:16 +07:00 committed by GitHub
commit b865228eed
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3217,7 +3217,7 @@ void CMinecraftApp::HandleXuiActions(void)
bool gameStarted = false;
for(int i = 0; i < pMinecraft->levels.length; i++)
{
if (pMinecraft->levels.data[i] != nullptr)
if (pMinecraft->levels.data[i] != NULL)
{
gameStarted = true;
break;
@ -9536,4 +9536,4 @@ bool CMinecraftApp::HasReachedMainMenu()
{
return m_hasReachedMainMenu;
}
#endif
#endif