From ba087d8d73edb4766796525e565e8901c1cf3bec Mon Sep 17 00:00:00 2001 From: Daniel GP <96537843+DaniGP17@users.noreply.github.com> Date: Tue, 15 Jul 2025 16:58:20 +0200 Subject: [PATCH] fix(gta-streaming-five): add missing byte offset for RawEntry --- .../gta-streaming-five/include/fiCollectionWrapper.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/components/gta-streaming-five/include/fiCollectionWrapper.h b/code/components/gta-streaming-five/include/fiCollectionWrapper.h index dd1979701f..33de3fac00 100644 --- a/code/components/gta-streaming-five/include/fiCollectionWrapper.h +++ b/code/components/gta-streaming-five/include/fiCollectionWrapper.h @@ -49,6 +49,9 @@ namespace rage struct RawEntry { FileEntry fe; +#if defined(IS_RDR3) + char m_pad[8]; +#endif uint64_t timestamp; const char* fileName;