Add error code on connection failure dialog

This commit is contained in:
Cameron Gutman 2020-02-21 22:01:12 -08:00
parent 8c910101c7
commit 37f65e43a5

View File

@ -1413,7 +1413,7 @@ public class Game extends Activity implements SurfaceHolder.Callback,
}
Dialog.displayDialog(Game.this, getResources().getString(R.string.conn_error_title),
getResources().getString(R.string.conn_error_msg) + " " + stage, true);
getResources().getString(R.string.conn_error_msg) + " " + stage +" (error "+errorCode+")", true);
}
}
});