diff options
author | smatz <smatz@openttd.org> | 2009-06-01 11:49:46 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2009-06-01 11:49:46 +0000 |
commit | c03ce4b1c704ef638374f56bbb9692db0e4e354c (patch) | |
tree | 72c24a2c268425261ae4e01f9900cedef22ecc26 /src/table | |
parent | bab70a823dd810e1d4477f0c01d3a7b3e9b19ac8 (diff) | |
download | openttd-c03ce4b1c704ef638374f56bbb9692db0e4e354c.tar.xz |
(svn r16492) -Remove: support for gcc2. It hasn't been able to compile OTTD for months. All attempts to do another workaround failed.
Diffstat (limited to 'src/table')
-rw-r--r-- | src/table/sprites.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/table/sprites.h b/src/table/sprites.h index c9ca6c98d..3f8e1f79b 100644 --- a/src/table/sprites.h +++ b/src/table/sprites.h @@ -1450,7 +1450,7 @@ enum SpriteMasks { assert_compile( (1 << TRANSPARENT_BIT & SPRITE_MASK) == 0 ); assert_compile( (1 << RECOLOUR_BIT & SPRITE_MASK) == 0 ); -assert_compile( !(TRANSPARENT_BIT == RECOLOUR_BIT) ); +assert_compile( TRANSPARENT_BIT != RECOLOUR_BIT ); assert_compile( (1 << TRANSPARENT_BIT & PALETTE_MASK) == 0); assert_compile( (1 << RECOLOUR_BIT & PALETTE_MASK) == 0 ); |