diff options
author | Paul Gilbert | 2016-03-29 21:57:09 -0400 |
---|---|---|
committer | Paul Gilbert | 2016-03-29 21:57:09 -0400 |
commit | e0602c4851ab42763cc66858fed8d05496040498 (patch) | |
tree | 30f19c267243e163c2c4cc8e9c8478507e2211da /engines/titanic/core | |
parent | 8a45f47c2e1e483b5a17b2d4abe22473eaf1e143 (diff) | |
download | scummvm-rg350-e0602c4851ab42763cc66858fed8d05496040498.tar.gz scummvm-rg350-e0602c4851ab42763cc66858fed8d05496040498.tar.bz2 scummvm-rg350-e0602c4851ab42763cc66858fed8d05496040498.zip |
TITANIC: More PET renaming, implemented setArea
Diffstat (limited to 'engines/titanic/core')
-rw-r--r-- | engines/titanic/core/game_object.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/engines/titanic/core/game_object.h b/engines/titanic/core/game_object.h index dccef71cfe..9a07cd1c98 100644 --- a/engines/titanic/core/game_object.h +++ b/engines/titanic/core/game_object.h @@ -53,16 +53,6 @@ private: void loadImage(const CString &name, bool pendingFlag = true); void processClipList2(); - - /** - * Marks the area in the passed rect as dirty, and requiring re-rendering - */ - void makeDirty(const Rect &r); - - /** - * Marks the area occupied by the object as dirty, requiring re-rendering - */ - void makeDirty(); protected: Rect _bounds; double _field34; @@ -109,6 +99,16 @@ protected: */ bool checkStartDragging(CMouseDragStartMsg *msg); + /** + * Marks the area in the passed rect as dirty, and requiring re-rendering + */ + void makeDirty(const Rect &r); + + /** + * Marks the area occupied by the object as dirty, requiring re-rendering + */ + void makeDirty(); + bool soundFn1(int val); void soundFn2(int val, int val2); void setVisible(bool val); |