mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-05-13 16:01:56 -04:00
Currently we were using heap allocating maps that last for the entire duration of the emulator running. Given the size N of both of these maps are very small (< 20 elements), we can just make use of an array of pairs and perform linear scans. This is also fine, given this code isn't particularly "hot" either, so this won't be run often.