mirror of https://github.com/OpenTTD/OpenTTD
(svn r8107) -Codechange (r8106): Show the MD5SUM of the original GRF (saved in savegame) instead of that of the replacement so a user can still go hunt for the original GRF if needed.
parent
66c5cde981
commit
a5cc170ab0
|
@ -242,7 +242,7 @@ compatible_grf:
|
||||||
if (!HASBIT(c->flags, GCF_COPY)) {
|
if (!HASBIT(c->flags, GCF_COPY)) {
|
||||||
free(c->filename);
|
free(c->filename);
|
||||||
c->filename = strdup(f->filename);
|
c->filename = strdup(f->filename);
|
||||||
memcpy(c->md5sum, f->md5sum, sizeof(c->md5sum));
|
/*memcpy(c->md5sum, f->md5sum, sizeof(c->md5sum));*/
|
||||||
if (c->name == NULL) c->name = strdup(f->name);
|
if (c->name == NULL) c->name = strdup(f->name);
|
||||||
if (c->info == NULL) c->info = strdup(f->info);
|
if (c->info == NULL) c->info = strdup(f->info);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue