changeset 5648:100c1d7813b6 draft

(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.
author Darkvater <Darkvater@openttd.org>
date Sat, 13 Jan 2007 17:44:11 +0000
parents 716e263a739d
children 3d753baf37ce
files src/newgrf_config.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/newgrf_config.cpp
+++ b/src/newgrf_config.cpp
@@ -242,7 +242,7 @@
 			if (!HASBIT(c->flags, GCF_COPY)) {
 				free(c->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->info == NULL) c->info = strdup(f->info);
 			}