mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-07-18 06:08:43 +00:00
refactor: replace NULL with nullptr across C++ codebase
Excludes vendored C libs (zlib, Miles, DirectXMath, boost, Iggy).
This commit is contained in:
@@ -10,7 +10,7 @@ DisconnectedScreen::DisconnectedScreen(const std::wstring& title,
|
||||
Language* language = Language::getInstance();
|
||||
|
||||
this->title = language->getElement(title);
|
||||
if (reasonObjects != NULL) {
|
||||
if (reasonObjects != nullptr) {
|
||||
this->reason = language->getElement(reason, reasonObjects);
|
||||
} else {
|
||||
this->reason = language->getElement(reason);
|
||||
|
||||
Reference in New Issue
Block a user