mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-21 02:32:06 +00:00
Replace NULL with nullptr (#1321)
This commit is contained in:
@@ -40,9 +40,9 @@ std::stack<Charmap *> charmapStack;
|
||||
|
||||
void charmap_New(char const *name, char const *baseName)
|
||||
{
|
||||
Charmap *base = NULL;
|
||||
Charmap *base = nullptr;
|
||||
|
||||
if (baseName != NULL) {
|
||||
if (baseName != nullptr) {
|
||||
auto search = charmaps.find(baseName);
|
||||
|
||||
if (search == charmaps.end())
|
||||
|
||||
Reference in New Issue
Block a user