mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-05 13:13:54 +00:00
The bounds checks in IOCtl were using 0x200 as the size of m_Registers, which is more than the actual size, 0x200 / 4. This commit turns m_Registers into an std::array to allow for a correct and obvious way of getting its size.