mirror of
https://github.com/rehlds/metamod-r.git
synced 2024-12-27 23:25:36 +03:00
Use nullptr instead NULL
This commit is contained in:
parent
bbcee49883
commit
2b059821c9
@ -191,7 +191,7 @@ MRegCvar* MRegCvarList::find(const char* findname)
|
|||||||
return reg;
|
return reg;
|
||||||
}
|
}
|
||||||
|
|
||||||
return NULL;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Disable any cvars belonging to the given plugin (by index id).
|
// Disable any cvars belonging to the given plugin (by index id).
|
||||||
|
@ -20,7 +20,7 @@ C_DLLEXPORT int Server_GetBlendingInterface(int version,
|
|||||||
float (*rotationmatrix)[3][4],
|
float (*rotationmatrix)[3][4],
|
||||||
float (*bonetransform)[MAXSTUDIOBONES][3][4])
|
float (*bonetransform)[MAXSTUDIOBONES][3][4])
|
||||||
{
|
{
|
||||||
static GETBLENDAPI_FN getblend = NULL;
|
static GETBLENDAPI_FN getblend = nullptr;
|
||||||
static int missing = 0;
|
static int missing = 0;
|
||||||
|
|
||||||
// Note that we're not checking if
|
// Note that we're not checking if
|
||||||
|
Loading…
Reference in New Issue
Block a user