From a11e5beded805eb4555e2c070a4ec83e9e08f4a4 Mon Sep 17 00:00:00 2001 From: Eric House Date: Tue, 18 Aug 2015 06:40:50 -0700 Subject: [PATCH] goes with prev commit --- .../XWords4/src/org/eehouse/android/xw4/BoardDelegate.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/xwords4/android/XWords4/src/org/eehouse/android/xw4/BoardDelegate.java b/xwords4/android/XWords4/src/org/eehouse/android/xw4/BoardDelegate.java index 385c60fa6..cde6b27fc 100644 --- a/xwords4/android/XWords4/src/org/eehouse/android/xw4/BoardDelegate.java +++ b/xwords4/android/XWords4/src/org/eehouse/android/xw4/BoardDelegate.java @@ -906,7 +906,7 @@ public class BoardDelegate extends DelegateBase break; case R.id.board_menu_game_resend: - m_jniThread.handle( JNICmd.CMD_RESEND, true, false ); + m_jniThread.handle( JNICmd.CMD_RESEND, true, false, true ); break; case R.id.gamel_menu_checkmoves: @@ -2104,7 +2104,8 @@ public class BoardDelegate extends DelegateBase } if ( 0 < m_connTypes.size() ) { - m_jniThread.handle( JNIThread.JNICmd.CMD_RESEND, force, true ); + m_jniThread.handle( JNIThread.JNICmd.CMD_RESEND, force, true, + false ); } }