fix crash by passing missing proc ptrs

This commit is contained in:
Eric House 2022-09-27 18:47:54 -07:00
parent f2b707ed4d
commit 47ea296c39

View file

@ -222,10 +222,9 @@ cb_newFor( CursesBoardState* cbState, const NetLaunchInfo* nli,
commonInit( cbState, -1, NULL );
CommonGlobals* cGlobals = &bGlobals->cGlobals;
initCP( cGlobals );
if ( game_makeFromInvite( &cGlobals->game, NULL_XWE, nli, &selfAddr,
cGlobals->util, (DrawCtx*)NULL,
&cGlobals->cp, (TransportProcs*)NULL ) ) {
&cGlobals->cp, &bGlobals->procs ) ) {
linuxSaveGame( cGlobals );
} else {
XP_ASSERT( 0 );