diff --git a/src/core/platform.h b/src/core/platform.h index 60baee6e..c8cc2a4f 100644 --- a/src/core/platform.h +++ b/src/core/platform.h @@ -26,7 +26,6 @@ enum class InterruptId : u32 { Compute6RelMem = 6u, GfxEop = 7u, GfxFlip = 8u, - MaxValue }; using IrqHandler = std::function; @@ -81,7 +80,7 @@ private: std::queue one_time_subscribers{}; std::mutex m_lock{}; }; - std::array irq_contexts{}; + std::array()> irq_contexts{}; }; using IrqC = Common::Singleton;