aboutsummaryrefslogtreecommitdiff
path: root/queen/walk.h
diff options
context:
space:
mode:
Diffstat (limited to 'queen/walk.h')
-rw-r--r--queen/walk.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/queen/walk.h b/queen/walk.h
index 54238a6250..2f63278afa 100644
--- a/queen/walk.h
+++ b/queen/walk.h
@@ -31,12 +31,12 @@ namespace Queen {
struct MovePersonAnim {
int16 firstFrame;
int16 lastFrame;
- uint16 facing;
+ Direction facing;
- void set(int16 ff, int16 lf, uint16 face) {
+ void set(int16 ff, int16 lf, Direction dir) {
firstFrame = ff;
lastFrame = lf;
- facing = face;
+ facing = dir;
}
};