mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-07-18 09:08:19 +00:00
refactor: replace NULL with nullptr across C++ codebase
Excludes vendored C libs (zlib, Miles, DirectXMath, boost, Iggy).
This commit is contained in:
@@ -48,7 +48,7 @@ void UIScene_SettingsControlMenu::updateTooltips() {
|
||||
}
|
||||
|
||||
void UIScene_SettingsControlMenu::updateComponents() {
|
||||
bool bNotInGame = (Minecraft::GetInstance()->level == NULL);
|
||||
bool bNotInGame = (Minecraft::GetInstance()->level == nullptr);
|
||||
if (bNotInGame) {
|
||||
m_parentLayer->showComponent(m_iPad, eUIComponent_Panorama, true);
|
||||
m_parentLayer->showComponent(m_iPad, eUIComponent_Logo, true);
|
||||
|
||||
Reference in New Issue
Block a user