Make DriverSet setting read in normal driver

This commit is contained in:
Jeffrey Pfau 2014-02-08 13:20:47 -08:00
parent 6451aeaefc
commit eb5580f719
1 changed files with 3 additions and 0 deletions

View File

@ -53,6 +53,9 @@ void GBASIODeinit(struct GBASIO* sio) {
}
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);
}