Warnings fixed
This commit is contained in:
@@ -491,7 +491,7 @@ public partial class GameController : AbstractFeedback
|
||||
// Correct sign
|
||||
if (predictedSign == currentSign)
|
||||
{
|
||||
//yield return new WaitForSeconds(1.0f);
|
||||
yield return new WaitForSeconds(1.0f);
|
||||
predictSign(predictedSign);
|
||||
timer = DateTime.Now;
|
||||
predictedSign = null;
|
||||
@@ -505,7 +505,7 @@ public partial class GameController : AbstractFeedback
|
||||
timer = DateTime.Now;
|
||||
previousIncorrectSign = predictedSign;
|
||||
}
|
||||
else if (DateTime.Now - timer > TimeSpan.FromSeconds(4.0f))
|
||||
else if (DateTime.Now - timer > TimeSpan.FromSeconds(2.0f))
|
||||
{
|
||||
predictSign(predictedSign);
|
||||
timer = DateTime.Now;
|
||||
|
||||
Reference in New Issue
Block a user