need to call super when don't handle an id locally

This commit is contained in:
Eric House 2014-05-19 07:53:41 -07:00
parent 4452adf33d
commit af5cbe5325

View file

@ -250,6 +250,9 @@ public class NewGameDelegate extends DelegateBase {
case ENABLE_NFC:
dialog = NFCUtils.makeEnableNFCDialog( m_activity );
break;
default:
dialog = super.onCreateDialog( id );
break;
}
return dialog;
}