all repos — mgba @ eb5580f719aac6d7f08186bf2a079c446e05c92f

mGBA Game Boy Advance Emulator

Make DriverSet setting read in normal driver
Jeffrey Pfau jeffrey@endrift.com
Sat, 08 Feb 2014 13:20:47 -0800
commit

eb5580f719aac6d7f08186bf2a079c446e05c92f

parent

6451aeaefc7c2d46861fa2794c7b6abc0e086c1f

1 files changed, 3 insertions(+), 0 deletions(-)

jump to
M src/gba/gba-sio.csrc/gba/gba-sio.c

@@ -53,6 +53,9 @@ }

} void GBASIOSetDriverSet(struct GBASIO* sio, struct GBASIODriverSet* drivers) { + if (drivers->normal) { + GBASIOSetDriver(sio, drivers->normal, SIO_NORMAL_8); + } if (drivers->multiplayer) { GBASIOSetDriver(sio, drivers->multiplayer, SIO_MULTI); }