From 0b3356bd1a9175632459cacee4dcace1b861a961 Mon Sep 17 00:00:00 2001 From: bax-cz Date: Tue, 20 Aug 2024 09:28:07 +0200 Subject: [PATCH] linux build fix --- src/core/file_format/playgo_chunk.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/core/file_format/playgo_chunk.h b/src/core/file_format/playgo_chunk.h index 4409d2d1..439e27d0 100644 --- a/src/core/file_format/playgo_chunk.h +++ b/src/core/file_format/playgo_chunk.h @@ -4,6 +4,7 @@ #pragma once #include #include +#include #include "common/io_file.h" #include "core/libraries/playgo/playgo_types.h" @@ -92,7 +93,7 @@ struct PlaygoChunk { u64 language_mask; u64 total_size; std::string label_name; -} __attribute__((packed)); +}; class PlaygoFile { public: @@ -127,4 +128,4 @@ private: private: PlaygoHeader playgoHeader; std::mutex speed_mutex; -}; \ No newline at end of file +};