diff --git a/xwords4/common/comms.c b/xwords4/common/comms.c index ea2420ff9..e1a71f7da 100644 --- a/xwords4/common/comms.c +++ b/xwords4/common/comms.c @@ -718,8 +718,8 @@ comms_getInitialAddr( CommsAddrRec* addr ) addr->u.ip_relay.port = 10999; { char* name = RELAY_NAME_DEFAULT; - XP_MEMCPY( addr->u.ip_relay.hostName, name, XP_STRLEN(name)+1 ); char* room = RELAY_ROOM_DEFAULT; + XP_MEMCPY( addr->u.ip_relay.hostName, name, XP_STRLEN(name)+1 ); XP_MEMCPY( addr->u.ip_relay.invite, room, XP_STRLEN(room)+1 ); } #elif defined PLATFORM_PALM diff --git a/xwords4/palm/Makefile.PNO b/xwords4/palm/Makefile.PNO index f6d3b4cf9..0252ce210 100644 --- a/xwords4/palm/Makefile.PNO +++ b/xwords4/palm/Makefile.PNO @@ -71,6 +71,7 @@ OBJS = $(PLATFORM)/pnolet.o \ $(PLATFORM)/palmdict.o \ $(PLATFORM)/palmdraw.o \ $(PLATFORM)/palmutil.o \ + $(PLATFORM)/palmblnk.o \ $(PLATFORM)/dictui.o \ $(PLATFORM)/dictlist.o \ $(PLATFORM)/palmir.o \ diff --git a/xwords4/palm/palmdraw.c b/xwords4/palm/palmdraw.c index 89987dd02..dd44ab9ce 100644 --- a/xwords4/palm/palmdraw.c +++ b/xwords4/palm/palmdraw.c @@ -891,6 +891,8 @@ palm_clr_draw_drawBoardArrow( DrawCtx* p_dctx, const XP_Rect* rectP, static void palm_draw_scoreBegin( DrawCtx* p_dctx, const XP_Rect* rect, XP_U16 XP_UNUSED(numPlayers), + const XP_S16* XP_UNUSED(scores), + XP_S16 XP_UNUSED(remCount), DrawFocusState XP_UNUSED(dfs) ) { PalmDrawCtx* dctx = (PalmDrawCtx*)p_dctx; diff --git a/xwords4/palm/palmmain.c b/xwords4/palm/palmmain.c index 5798dafbe..ca2b0b20c 100644 --- a/xwords4/palm/palmmain.c +++ b/xwords4/palm/palmmain.c @@ -1636,6 +1636,7 @@ showConnState( PalmAppGlobals* globals ) resID = RELAYSTATUS_PENDING_RESID; break; case COMMS_RELAYSTATE_CONNECTED: + case COMMS_RELAYSTATE_RECONNECTED: resID = RELAYSTATUS_CONN_RESID; break; case COMMS_RELAYSTATE_ALLCONNECTED: