Minecraft Consoles latest changes + Better shadow for water in Extra mode

Culling for water need more work in extra graphics mode.
This commit is contained in:
GabsPuNs
2026-04-08 23:47:27 -04:00
parent 23102c65b6
commit 4dfedbffd1
12 changed files with 453 additions and 102 deletions

View File

@@ -52,7 +52,7 @@ namespace ServerRuntime
auto it = m_lookup.find(key);
if (it == m_lookup.end())
{
return NULL;
return nullptr;
}
return it->second;
}
@@ -63,7 +63,7 @@ namespace ServerRuntime
auto it = m_lookup.find(key);
if (it == m_lookup.end())
{
return NULL;
return nullptr;
}
return it->second;
}