diff options
| author | Miyo Sho <135030944+yuri-kiss@users.noreply.github.com> | 2026-03-01 12:57:42 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-01 12:57:42 -0500 |
| commit | 0714be8b8d0cdf8872b86dbb94ccbb683a483c0c (patch) | |
| tree | 3dfae754481b40bb5c71f2e57ac7ae559554c5bb /Minecraft.Client/Common/Consoles_App.cpp | |
| parent | 33e1b5ceb9970e08cb6b2b987afdff4bd42331ac (diff) | |
fix: ps3 build error
Diffstat (limited to 'Minecraft.Client/Common/Consoles_App.cpp')
| -rw-r--r-- | Minecraft.Client/Common/Consoles_App.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Minecraft.Client/Common/Consoles_App.cpp b/Minecraft.Client/Common/Consoles_App.cpp index b325f3a1..c2082965 100644 --- a/Minecraft.Client/Common/Consoles_App.cpp +++ b/Minecraft.Client/Common/Consoles_App.cpp @@ -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
\ No newline at end of file +#endif |
