all repos — mgba @ accb47b0137644ee7d3e455e3dc927bbc21cfc5a

mGBA Game Boy Advance Emulator

Python: Fix build
Vicki Pfau vi@endrift.com
Sun, 28 Mar 2021 14:59:50 -0700
commit

accb47b0137644ee7d3e455e3dc927bbc21cfc5a

parent

b98f86bb08336b55d4fcb740caa1db496496a3c0

2 files changed, 2 insertions(+), 1 deletions(-)

jump to
M include/mgba/gba/interface.hinclude/mgba/gba/interface.h

@@ -78,6 +78,8 @@ bool (*unload)(struct GBASIODriver* driver);

uint16_t (*writeRegister)(struct GBASIODriver* driver, uint32_t address, uint16_t value); }; +void GBASIOJOYCreate(struct GBASIODriver* sio); + enum GBASIOBattleChipGateFlavor { GBA_FLAVOR_BATTLECHIP_GATE = 4, GBA_FLAVOR_PROGRESS_GATE = 5,
M include/mgba/internal/gba/sio.hinclude/mgba/internal/gba/sio.h

@@ -82,7 +82,6 @@ void GBASIOWriteRCNT(struct GBASIO* sio, uint16_t value);

void GBASIOWriteSIOCNT(struct GBASIO* sio, uint16_t value); uint16_t GBASIOWriteRegister(struct GBASIO* sio, uint32_t address, uint16_t value); -void GBASIOJOYCreate(struct GBASIODriver* sio); int GBASIOJOYSendCommand(struct GBASIODriver* sio, enum GBASIOJOYCommand command, uint8_t* data); CXX_GUARD_END