mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 11:12:29 +00:00
chore(ui): replace remaining NULLs with nullptr
This commit is contained in:
parent
d61f0faef1
commit
90403bfd29
7 changed files with 13 additions and 13 deletions
|
|
@ -254,7 +254,7 @@ CSimpleFontString* LoadXML_String(XMLNode* node, CSimpleFrame* frame, CStatus* s
|
|||
if (m) {
|
||||
fontString = new (m) CSimpleFontString(frame, 2, 1);
|
||||
} else {
|
||||
fontString = NULL;
|
||||
fontString = nullptr;
|
||||
}
|
||||
|
||||
fontString->PreLoadXML(node, status);
|
||||
|
|
@ -275,7 +275,7 @@ CSimpleTexture* LoadXML_Texture(XMLNode* node, CSimpleFrame* frame, CStatus* sta
|
|||
if (m) {
|
||||
texture = new (m) CSimpleTexture(frame, 2, 1);
|
||||
} else {
|
||||
texture = NULL;
|
||||
texture = nullptr;
|
||||
}
|
||||
|
||||
texture->PreLoadXML(node, status);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue