mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-03 23:04:08 +01:00
fix nag timer math
This commit is contained in:
parent
69482bf442
commit
36afbb7330
1 changed files with 4 additions and 4 deletions
|
@ -37,12 +37,12 @@ import org.eehouse.android.xw4.jni.GameSummary;
|
|||
public class NagTurnReceiver extends BroadcastReceiver {
|
||||
|
||||
private static final long INTERVAL_MILLIS = 1000 * 30; // every half minute for now
|
||||
private static final long[] NAG_INTERVAL_SECONDS = {// 2*60, // five minutes (for testing)
|
||||
private static final long[] NAG_INTERVAL_SECONDS = {// 2*60, // two minutes (for testing)
|
||||
// 5*60,
|
||||
// 10*60,
|
||||
60*1*24, // one day
|
||||
60*2*24, // two days
|
||||
60*3*24, // three days
|
||||
60*60*24*1, // one day
|
||||
60*60*24*2, // two days
|
||||
60*60*24*3, // three days
|
||||
};
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue