Changeset - r3148:1c0ca7d157ad
[Not reviewed]
master
0 1 0
tron - 18 years ago 2006-03-05 12:54:22
tron@openttd.org
(svn r3769) Add a cast to make KUDr's C++ compiler happy
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
direction.h
Show inline comments
 
@@ -30,7 +30,7 @@ typedef enum DiagDirection {
 

	
 
static inline DiagDirection ReverseDiagDir(DiagDirection d)
 
{
 
	return 2 ^ d;
 
	return (DiagDirection)(2 ^ d);
 
}
 

	
 

	
0 comments (0 inline, 0 general)