From 928dd0e6656ef76ea54b380ec356f872e5e92c42 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Wed, 21 Dec 2022 17:30:22 +1000 Subject: [PATCH] MDEC: Fix Linux compiling --- src/core/mdec.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/mdec.cpp b/src/core/mdec.cpp index 0f38241d7..b89f21e85 100644 --- a/src/core/mdec.cpp +++ b/src/core/mdec.cpp @@ -130,7 +130,7 @@ static u32 s_current_block = 0; // block (0-5) static u32 s_current_coefficient = 64; // k (in block) static u16 s_current_q_scale = 0; -static alignas(16) std::array s_block_rgb{}; +alignas(16) static std::array s_block_rgb{}; static std::unique_ptr s_block_copy_out_event; static u32 s_total_blocks_decoded = 0;