diff options
Diffstat (limited to 'cObject.cpp')
-rw-r--r-- | cObject.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cObject.cpp b/cObject.cpp index b293745..118fe6f 100644 --- a/cObject.cpp +++ b/cObject.cpp @@ -3,7 +3,6 @@ cObject::cObject(int _sx, int _sy) { bSizeSet = false; - bBlockRender = true; //Block inherited render capabilities of parent setSize(_sx, _sy); } @@ -47,6 +46,8 @@ void cObject::setSize(int _sx, int _sy) if(bSizeSet) return; + bBlockRender = true; //Block inherited render capabilities of parent + sizeX = _sx; sizeY = _sy; |