Changeset - r10808:5ec02770cf94
[Not reviewed]
master
0 1 0
rubidium - 16 years ago 2009-01-18 19:23:41
rubidium@openttd.org
(svn r15142) -Fix (r15126): missing NewGRFs cause a crash when getting the content list.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/newgrf_gui.cpp
Show inline comments
 
@@ -600,7 +600,7 @@ struct NewGRFWindow : public Window {
 
						ContentInfo *ci = new ContentInfo();
 
						ci->type = CONTENT_TYPE_NEWGRF;
 
						ci->state = ContentInfo::DOES_NOT_EXIST;
 
						ttd_strlcpy(ci->name, c->name, lengthof(ci->name));
 
						ttd_strlcpy(ci->name, c->name != NULL ? c->name : c->filename, lengthof(ci->name));
 
						ci->unique_id = BSWAP32(c->grfid);
 
						memcpy(ci->md5sum, c->md5sum, sizeof(ci->md5sum));
 
						*cv.Append() = ci;
0 comments (0 inline, 0 general)