aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche/avalot.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/avalanche/avalot.h')
-rw-r--r--engines/avalanche/avalot.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/engines/avalanche/avalot.h b/engines/avalanche/avalot.h
index af7ba2c71d..189b9cb488 100644
--- a/engines/avalanche/avalot.h
+++ b/engines/avalanche/avalot.h
@@ -57,8 +57,8 @@ private:
uint16 _hour, _minute, _second, _hourAngle, _oldHour, _oldMinute, _oldHourAngle;
Common::Point _clockHandHour, _clockHandMinute;
- void calcHand(uint16 angle, uint16 length, Common::Point &endPoint, byte color);
- void drawHand(const Common::Point &endPoint, byte color);
+ void calcHand(uint16 angle, uint16 length, Common::Point &endPoint, Color color);
+ void drawHand(const Common::Point &endPoint, Color color);
void plotHands();
void chime();
};
@@ -92,13 +92,16 @@ struct ByteField {
};
struct LineType : public FieldType {
- byte _color;
+ Color _color;
};
typedef int8 TuneType[31];
struct QuasipedType {
- byte _whichPed, _foregroundColor, _room, _backgroundColor;
+ byte _whichPed;
+ Color _foregroundColor;
+ Room _room;
+ Color _backgroundColor;
People _who;
};