diff options
Diffstat (limited to 'backends/platform/3ds/sprite.h')
-rw-r--r-- | backends/platform/3ds/sprite.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/backends/platform/3ds/sprite.h b/backends/platform/3ds/sprite.h index 6d88ae4ce1..129c2689e7 100644 --- a/backends/platform/3ds/sprite.h +++ b/backends/platform/3ds/sprite.h @@ -46,16 +46,16 @@ public: void render(); void clear(uint32 color = 0); void markDirty(){ dirtyPixels = true; } - + void setPosition(int x, int y); void setScale(float x, float y); float getScaleX(){ return scaleX; } float getScaleY(){ return scaleY; } C3D_Mtx* getMatrix(); - + uint16 actualWidth; uint16 actualHeight; - + private: bool dirtyPixels; bool dirtyMatrix; |