Fixed a warning in a Release build
git-svn-id: http://mc-server.googlecode.com/svn/trunk@423 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
parent
ff9ae21e6d
commit
8d9e539f33
@ -199,7 +199,10 @@ void cWindow::Clicked( cPacket_WindowClick* a_ClickPacket, cPlayer & a_Player )
|
||||
Window->Clicked( a_ClickPacket, a_Player );
|
||||
}
|
||||
}
|
||||
if( m_DraggingItem ) LOGD("Dragging: %i", m_DraggingItem->m_ItemCount );
|
||||
if (m_DraggingItem != NULL)
|
||||
{
|
||||
LOGD("Dragging: %i", m_DraggingItem->m_ItemCount );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user