1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-18 19:29:09 +00:00

Minor fixes.

This commit is contained in:
Darryl Pogue
2013-07-22 19:41:27 -07:00
parent fc9d51cc35
commit cc264e3f43
2 changed files with 2 additions and 2 deletions

View File

@ -205,7 +205,7 @@ bool plCubicRenderTargetModifier::MsgReceive( plMessage* msg )
for (int i = 0; i < 6; i++)
{
delete fRequests[i];
fRequests[i] = nil;
fRequests[i] = nullptr;
}
}
}

View File

@ -204,7 +204,7 @@ uint32_t *plTextGenerator::IAllocateOSSurface( uint16_t width, uint16_t hei
return (uint32_t *)fWinRGBBits;
#else
return 0;
return nullptr;
#endif
}