This commit is contained in:
Eric House 2022-08-09 22:39:18 -05:00
parent 518fcc4a70
commit 0497a456e7
4 changed files with 5 additions and 4 deletions

View file

@ -2310,7 +2310,6 @@ public class BoardDelegate extends DelegateBase
runOnUiThread( new Runnable() {
@Override
public void run() {
Log.d( TAG, "makeJNIHandler(): handling GAME_OVER" );
Assert.assertTrueNR( m_jniGamePtr.isRetained() );
if ( m_jniGamePtr.isRetained() ) {
boolean hasPending = 0 < XwJNI.

View file

@ -794,7 +794,8 @@ public class DictBrowseDelegate extends DelegateBase
{
if ( ! m_filterAlertShown ) {
m_filterAlertShown = true;
makeNotAgainBuilder( R.string.key_na_newFeatureFilter, R.string.new_feature_filter )
makeNotAgainBuilder( R.string.key_na_newFeatureFilter,
R.string.new_feature_filter )
.setActionPair( Action.SHOW_FAQ, R.string.button_faq )
.setParams( (Object)FAQ_PARAMS )
.show();

View file

@ -2779,7 +2779,8 @@ public class GamesListDelegate extends ListDelegateBase
String langName = DictLangCache
.getLangNameForISOCode( m_activity, isoCode );
makeConfirmThenBuilder( Action.DWNLD_LOC_DICT,
R.string.confirm_get_locdict_fmt, langName )
R.string.confirm_get_locdict_fmt,
langName )
.setPosButton( R.string.button_download )
.setNegButton( R.string.button_no )
.setNAKey( R.string.key_got_langdict )

View file

@ -2715,7 +2715,7 @@ nextTurn( ServerCtxt* server, XWEnv xwe, XP_S16 nxtTurn )
if ( NULL != server->nv._prevMoveStream && XWSTATE_NEED_SHOWSCORE != server->nv.gameState ) {
if ( inDuplicateMode(server) || server->nv.showRobotScores ) {
server->nv.stateAfterShow = server->nv.gameState;
SETSTATE( server, XWSTATE_NEED_SHOWSCORE ); /* here? */
SETSTATE( server, XWSTATE_NEED_SHOWSCORE );
moreToDo = XP_TRUE;
} else {
XP_ASSERT( 0 );