disable Rematch button (for now)

This commit is contained in:
Eric House 2012-12-10 07:11:13 -08:00
parent 3a45db66cf
commit 1bc8070bb1
2 changed files with 2 additions and 1 deletions

View file

@ -248,7 +248,7 @@ public class BoardActivity extends XWActivity
}
};
ab.setNegativeButton( R.string.button_retry, lstnr );
} else if ( GAME_OVER == id ) {
} else if ( XWApp.REMATCH_SUPPORTED && GAME_OVER == id ) {
lstnr = new DialogInterface.OnClickListener() {
public void onClick( DialogInterface dlg,
int whichButton ) {

View file

@ -33,6 +33,7 @@ public class XWApp extends Application {
public static final boolean SMSSUPPORTED = true;
public static final boolean GCMSUPPORTED = true;
public static final boolean ATTACH_SUPPORTED = true;
public static final boolean REMATCH_SUPPORTED = false;
public static final boolean DEBUG = true; // DON'T SHIP THIS WAY
public static final String SMS_PUBLIC_HEADER = "-XW4";