From 4ba32c44f259da3ad0faffbacf0a84e4ee05acb4 Mon Sep 17 00:00:00 2001 From: yugecin Date: Wed, 11 Jan 2017 23:02:17 +0100 Subject: [PATCH] typos --- src/yugecin/opsudance/states/EmptyRedState.java | 2 +- src/yugecin/opsudance/states/EmptyState.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/yugecin/opsudance/states/EmptyRedState.java b/src/yugecin/opsudance/states/EmptyRedState.java index b055876b..e00eeaaf 100644 --- a/src/yugecin/opsudance/states/EmptyRedState.java +++ b/src/yugecin/opsudance/states/EmptyRedState.java @@ -39,7 +39,7 @@ public class EmptyRedState implements OpsuState { public void update(int delta) { counter -= delta; if (counter < 0) { - counter = 10000; // to prevent more calls to switch, as this will keep rendingering untill state transitioned + counter = 10000; // to prevent more calls to switch, as this will keep rendering until state transitioned System.out.println(System.currentTimeMillis() - start); displayContainer.switchState(EmptyState.class); } diff --git a/src/yugecin/opsudance/states/EmptyState.java b/src/yugecin/opsudance/states/EmptyState.java index 02a1a443..8e189941 100644 --- a/src/yugecin/opsudance/states/EmptyState.java +++ b/src/yugecin/opsudance/states/EmptyState.java @@ -38,7 +38,7 @@ public class EmptyState implements OpsuState { public void update(int delta) { counter -= delta; if (counter < 0) { - counter = 10000; // to prevent more calls to switch, as this will keep rendingering untill state transitioned + counter = 10000; // to prevent more calls to switch, as this will keep rending until state transitioned displayContainer.switchState(EmptyRedState.class); } }