Add fields to m64p_rom_settings

The core library has added these fields so all frontends must be updated
or recompiled to continue working.  Otherwise the wrong size will be
sent to CoreGetRomSettings() and it will return a M64ERR_INPUT_INVALID
response.
This commit is contained in:
Robert Alm Nilsson 2018-07-16 16:25:17 +02:00
parent 164577efde
commit f4961171c6

View file

@ -190,7 +190,10 @@ class m64p_rom_settings(C.Structure):
('savetype', C.c_ubyte),
('status', C.c_ubyte),
('players', C.c_ubyte),
('rumble', C.c_ubyte)
('rumble', C.c_ubyte),
('transferpak', C.c_ubyte),
('mempak', C.c_ubyte),
('biopak', C.c_ubyte)
]