table/directions.h
author bjarni
Mon, 03 Jan 2005 20:52:09 +0000
changeset 869 0f8d9efae2e8
parent 160 db200af4794a
permissions -rw-r--r--
(svn r1350) Replace Vehicle GUI:
- Replaced "WP(w,replaceveh_d).line_height" with
"w->resize.step_height" since they needed to be the same anyway
- Cleaned the code a litte for readability (like correct tabbing)
- Added company color to replace vehicle windows to make them look like
the rest of the vehicle windows and made the caption text white (also to
fit the standard)

--This line, and those below, will be ignored--

M vehicle_gui.c
M lang/english.txt
M window.h
160
db200af4794a (svn r161) -Fix: added missing file to project and solved wrong type bug
darkvater
parents:
diff changeset
     1
static const byte _dir_to_straight_trackdir[4] = {
db200af4794a (svn r161) -Fix: added missing file to project and solved wrong type bug
darkvater
parents:
diff changeset
     2
	0, 1, 8, 9,
db200af4794a (svn r161) -Fix: added missing file to project and solved wrong type bug
darkvater
parents:
diff changeset
     3
};
db200af4794a (svn r161) -Fix: added missing file to project and solved wrong type bug
darkvater
parents:
diff changeset
     4
db200af4794a (svn r161) -Fix: added missing file to project and solved wrong type bug
darkvater
parents:
diff changeset
     5
static const byte _reverse_dir[4] = {
db200af4794a (svn r161) -Fix: added missing file to project and solved wrong type bug
darkvater
parents:
diff changeset
     6
//	3, 0, 1, 2
db200af4794a (svn r161) -Fix: added missing file to project and solved wrong type bug
darkvater
parents:
diff changeset
     7
	2, 3, 0, 1
db200af4794a (svn r161) -Fix: added missing file to project and solved wrong type bug
darkvater
parents:
diff changeset
     8
};