diff options
author | Darkvater <darkvater@openttd.org> | 2007-01-13 17:44:11 +0000 |
---|---|---|
committer | Darkvater <darkvater@openttd.org> | 2007-01-13 17:44:11 +0000 |
commit | a5cc170ab027a5532170392c938e42da9801132d (patch) | |
tree | ab54109f7c17cf5903b135ba28f24caebff7c07b | |
parent | 66c5cde9816ae913051c9bb516798cac5aee28e9 (diff) | |
download | openttd-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.
-rw-r--r-- | src/newgrf_config.cpp | 2 |
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); } |