summaryrefslogtreecommitdiff
path: root/src/newgrf_config.cpp
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2007-01-13 17:44:11 +0000
committerDarkvater <darkvater@openttd.org>2007-01-13 17:44:11 +0000
commita5cc170ab027a5532170392c938e42da9801132d (patch)
treeab54109f7c17cf5903b135ba28f24caebff7c07b /src/newgrf_config.cpp
parent66c5cde9816ae913051c9bb516798cac5aee28e9 (diff)
downloadopenttd-a5cc170ab027a5532170392c938e42da9801132d.tar.xz
(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.
Diffstat (limited to 'src/newgrf_config.cpp')
-rw-r--r--src/newgrf_config.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf_config.cpp b/src/newgrf_config.cpp
index 534509e89..acf519ea3 100644
--- a/src/newgrf_config.cpp
+++ b/src/newgrf_config.cpp
@@ -242,7 +242,7 @@ compatible_grf:
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);
}