Changeset - r11988:e64e5cd582c2
[Not reviewed]
master
0 1 0
frosch - 15 years ago 2009-05-23 13:42:02
frosch@openttd.org
(svn r16399) -Fix (r4540): Don't treat pointer values as integer.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/newgrf.cpp
Show inline comments
 
@@ -3311,7 +3311,7 @@ static void FeatureMapSpriteGroup(byte *
 
	 * W cid           cargo ID (sprite group ID) for this type of cargo
 
	 * W def-cid       default cargo ID (sprite group ID) */
 

	
 
	if (_cur_grffile->spritegroups == 0) {
 
	if (_cur_grffile->spritegroups == NULL) {
 
		grfmsg(1, "FeatureMapSpriteGroup: No sprite groups to work on! Skipping");
 
		return;
 
	}
0 comments (0 inline, 0 general)