From 14f92bef806137ededc1f807cdbe7371c2c65882 Mon Sep 17 00:00:00 2001 From: Tomas Dittmann Date: Mon, 14 Aug 2017 20:58:33 +0200 Subject: [PATCH] Remove unnecessary cast --- src/openrct2/rct2/S6Exporter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2/rct2/S6Exporter.cpp b/src/openrct2/rct2/S6Exporter.cpp index 59670bbf55..e5dfbabe14 100644 --- a/src/openrct2/rct2/S6Exporter.cpp +++ b/src/openrct2/rct2/S6Exporter.cpp @@ -175,7 +175,7 @@ void S6Exporter::Export() } else { - _s6.objects[i] = *((rct_object_entry *)entry); + _s6.objects[i] = *entry; } }