Network/AbstractSocket: Fix state sent to OnStateChange

Former-commit-id: ae83ea675153d7954187c12d93d7c8c42d8e1dfc
This commit is contained in:
Lynix 2015-11-10 14:42:36 +01:00
parent fd09cdbf1e
commit 3b9c736c16
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ namespace Nz
{
if (m_state != newState)
{
OnStateChange(this, m_state);
OnStateChange(this, newState);
m_state = newState;
}
}