all repos — mgba @ 2bacae3075d4191c26d0f66e40da7ae360923bf8

mGBA Game Boy Advance Emulator

GBA SIO: Fix unitialized memory issue
Vicki Pfau vi@endrift.com
Sat, 16 Nov 2019 12:16:47 -0800
commit

2bacae3075d4191c26d0f66e40da7ae360923bf8

parent

5e37df6cf5b7f9744bdbb64c550cf13a98892b35

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

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

@@ -47,6 +47,7 @@ }

lockstep->players[lockstep->d.attached] = node; node->p = lockstep; node->id = lockstep->d.attached; + node->transferFinished = true; ++lockstep->d.attached; return true; }