summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gamelog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gamelog.cpp b/src/gamelog.cpp
index 83d1ba112..c0325fd2a 100644
--- a/src/gamelog.cpp
+++ b/src/gamelog.cpp
@@ -543,7 +543,7 @@ void GamelogGRFAdd(const GRFConfig *newg)
LoggedChange *lc = GamelogChange(GLCT_GRFADD);
if (lc == NULL) return;
- memcpy(&lc->grfadd, newg, sizeof(GRFIdentifier));
+ lc->grfadd = newg->ident;
}
/** Logs loading compatible GRF
@@ -557,7 +557,7 @@ void GamelogGRFCompatible(const GRFIdentifier *newg)
LoggedChange *lc = GamelogChange(GLCT_GRFCOMPAT);
if (lc == NULL) return;
- memcpy(&lc->grfcompat, newg, sizeof(GRFIdentifier));
+ lc->grfcompat = *newg;
}
/** Logs changing GRF order