From db45c9e04d570fca50683a5717670c3bb328c23e Mon Sep 17 00:00:00 2001 From: Simon Zeng Date: Mon, 22 Oct 2018 20:22:34 -0400 Subject: [PATCH] Fixed phrasing in Loop.java --- app/src/main/java/me/andrewpeng/cadence/core/Loop.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/me/andrewpeng/cadence/core/Loop.java b/app/src/main/java/me/andrewpeng/cadence/core/Loop.java index f707213..64879ea 100644 --- a/app/src/main/java/me/andrewpeng/cadence/core/Loop.java +++ b/app/src/main/java/me/andrewpeng/cadence/core/Loop.java @@ -50,11 +50,11 @@ public void run() { if (framesSkipped > 0){ System.out.println("Can't keep up! Skipped " + framesSkipped + " frames"); } - // Recall this runnable for the next iteration of ticks and renders + // Call this runnable again for the next iteration of ticks and renders handler.postDelayed(runnable, sleepTime); } }; // Run for the first time handler.post(runnable); } -} \ No newline at end of file +}