summaryrefslogtreecommitdiff
path: root/oldloader.c
diff options
context:
space:
mode:
Diffstat (limited to 'oldloader.c')
-rw-r--r--oldloader.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/oldloader.c b/oldloader.c
index 26f5813b0..56ef7c51c 100644
--- a/oldloader.c
+++ b/oldloader.c
@@ -722,8 +722,8 @@ static bool LoadOldStation(LoadgameState *ls, int num)
if (st->xy != 0) {
if (st->train_tile) {
/* Calculate the trainst_w and trainst_h */
- int w = (_old_platforms >> 3) & 0x7;
- int h = (_old_platforms & 0x7);
+ uint w = GB(_old_platforms, 3, 3);
+ uint h = GB(_old_platforms, 0, 3);
st->trainst_w = w;
st->trainst_h = h;
}