Made Texture constructor consistent

Former-commit-id: 92be798524a48cb979c09fa04558602bf3717391
This commit is contained in:
Lynix
2012-12-24 20:38:20 +01:00
parent 1a5cf8cc0f
commit dc3cfa40ec
2 changed files with 3 additions and 9 deletions

View File

@@ -191,13 +191,7 @@ namespace
}
}
NzTexture::NzTexture() :
m_impl(nullptr)
{
}
NzTexture::NzTexture(const NzImage& image) :
m_impl(nullptr)
NzTexture::NzTexture(const NzImage& image)
{
LoadFromImage(image);