2
0
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:
s1lent 2017-11-18 23:15:45 +07:00
parent bbcee49883
commit 2b059821c9
No known key found for this signature in database
GPG Key ID: 0FE401DC73916B5C
2 changed files with 2 additions and 2 deletions

View File

@ -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).

View File

@ -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