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

View File

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