mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-07-17 13:48:11 +00:00
refactor: replace NULL with nullptr across C++ codebase
Excludes vendored C libs (zlib, Miles, DirectXMath, boost, Iggy).
This commit is contained in:
@@ -92,7 +92,7 @@ void UIScene_SignEntryMenu::tick() {
|
||||
if (pMinecraft->level->isClientSide) {
|
||||
std::shared_ptr<MultiplayerLocalPlayer> player =
|
||||
pMinecraft->localplayers[m_iPad];
|
||||
if (player != NULL && player->connection &&
|
||||
if (player != nullptr && player->connection &&
|
||||
player->connection->isStarted()) {
|
||||
player->connection->send(
|
||||
std::shared_ptr<SignUpdatePacket>(new SignUpdatePacket(
|
||||
|
||||
Reference in New Issue
Block a user