Changed: Minor changes

This commit is contained in:
kervala 2015-12-20 11:19:51 +01:00
parent 00259ef7e7
commit bb98346cc4
2 changed files with 4 additions and 5 deletions

View file

@ -741,7 +741,7 @@ void initMainLoop()
nmsg = "Creating Landscape ...";
ProgressBar.newMessage ( ClientCfg.buildLoadingString(nmsg) );
Landscape = Scene->createLandscape();
if(Landscape == 0)
if(Landscape == NULL)
nlerror("initMainLoop : Cannot create a Landscape.");
if (!ClientCfg.Light)
@ -829,7 +829,7 @@ void initMainLoop()
H_AUTO(InitRZWorld)
// Initialize World and select the right continent.
nmsg = "Loading World ...";
nmsg = "Loading World ...";
ProgressBar.newMessage ( ClientCfg.buildLoadingString(nmsg) );
ContinentMngr.load();
ContinentMngr.select(UserEntity->pos(), ProgressBar);
@ -880,8 +880,9 @@ void initMainLoop()
{
nlwarning("Can't load HLSBank: %s", e.what());
}
// setup according to client
if(ClientCfg.HDTextureInstalled)
if (ClientCfg.HDTextureInstalled)
{
if(ClientCfg.HDEntityTexture)
{

View file

@ -469,8 +469,6 @@ void CPlayerCL::equip(SLOTTYPE::EVisualSlot slot, const std::string &shapeName,
return;
}
// Attach to the skeleton.
string stickPoint;
if(!_Skeleton.empty())