From 36afbb73303505084ae59c578132de189d8af04b Mon Sep 17 00:00:00 2001 From: Eric House Date: Tue, 19 Aug 2014 06:50:10 -0700 Subject: [PATCH] fix nag timer math --- .../src/org/eehouse/android/xw4/NagTurnReceiver.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/xwords4/android/XWords4/src/org/eehouse/android/xw4/NagTurnReceiver.java b/xwords4/android/XWords4/src/org/eehouse/android/xw4/NagTurnReceiver.java index 1115f2280..f813f67b7 100644 --- a/xwords4/android/XWords4/src/org/eehouse/android/xw4/NagTurnReceiver.java +++ b/xwords4/android/XWords4/src/org/eehouse/android/xw4/NagTurnReceiver.java @@ -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