File tree Expand file tree Collapse file tree 4 files changed +436
-408
lines changed Expand file tree Collapse file tree 4 files changed +436
-408
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ void *getBattlePointer()
102
102
void *getMarioBattlePointer ()
103
103
{
104
104
void *BattlePointer = getBattlePointer ();
105
- if (BattlePointer == nullptr )
105
+ if (! BattlePointer)
106
106
{
107
107
return nullptr ;
108
108
}
@@ -113,7 +113,7 @@ void *getMarioBattlePointer()
113
113
void *getPartnerBattlePointer ()
114
114
{
115
115
void *MarioBattlePointer = getMarioBattlePointer ();
116
- if (MarioBattlePointer == nullptr )
116
+ if (! MarioBattlePointer)
117
117
{
118
118
return nullptr ;
119
119
}
@@ -125,7 +125,7 @@ void *getPartnerBattlePointer()
125
125
void *getActorPointer (uint32_t slot)
126
126
{
127
127
void *BattlePointer = getBattlePointer ();
128
- if (BattlePointer == nullptr )
128
+ if (! BattlePointer)
129
129
{
130
130
return nullptr ;
131
131
}
Original file line number Diff line number Diff line change @@ -413,7 +413,7 @@ void drawInventoryIconAndTextColumns()
413
413
uint32_t Address_and_Size[2 ];
414
414
uint32_t *tempArray = getPouchAddressAndSize (Address_and_Size);
415
415
416
- if (tempArray == nullptr )
416
+ if (! tempArray)
417
417
{
418
418
return ;
419
419
}
You can’t perform that action at this time.
0 commit comments