mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-02 09:40:35 +00:00
9 lines
135 B
C
9 lines
135 B
C
static const byte _dir_to_straight_trackdir[4] = {
|
|
0, 1, 8, 9,
|
|
};
|
|
|
|
static const byte _reverse_dir[4] = {
|
|
// 3, 0, 1, 2
|
|
2, 3, 0, 1
|
|
};
|