Fix initialization orders

This commit is contained in:
Tobias Loose
2013-11-29 18:44:30 +01:00
parent 031f2dbffb
commit 0db2925e7a

View File

@@ -343,7 +343,7 @@ void JQuad::SetHotSpot(float x, float y)
//////////////////////////////////////////////////////////////////////////
JTexture::JTexture() : mBuffer(NULL), mHeight(0), mWidth(0)
JTexture::JTexture() : mWidth(0), mHeight(0), mBuffer(NULL)
{
mTexId = -1;
}