mirror of
https://github.com/mupen64plus/mupen64plus-ui-python.git
synced 2025-04-02 10:51:53 -04:00
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:
parent
164577efde
commit
f4961171c6
1 changed files with 4 additions and 1 deletions
|
@ -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)
|
||||
]
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue