aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/objects.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/parallaction/objects.cpp')
-rw-r--r--engines/parallaction/objects.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/engines/parallaction/objects.cpp b/engines/parallaction/objects.cpp
index cac1c5e148..1135724cd5 100644
--- a/engines/parallaction/objects.cpp
+++ b/engines/parallaction/objects.cpp
@@ -192,7 +192,6 @@ uint16 Zone::height() const {
Label::Label() {
resetPosition();
- _text = 0;
}
Label::~Label() {
@@ -201,9 +200,6 @@ Label::~Label() {
void Label::free() {
_cnv.free();
- ::free(_text);
- _text = 0;
-
resetPosition();
}
@@ -212,12 +208,6 @@ void Label::resetPosition() {
_pos.y = -1000;
}
-void Label::getRect(Common::Rect &r) {
- r.setWidth(_cnv.w);
- r.setHeight(_cnv.h);
- r.moveTo(_pos);
-}
-
Answer::Answer() {
_text = NULL;
_mood = 0;