Further improve a for() loop
diff --git a/system/helpers/captcha_helper.php b/system/helpers/captcha_helper.php
index 1e6ee3c..bdbc620 100644
--- a/system/helpers/captcha_helper.php
+++ b/system/helpers/captcha_helper.php
@@ -138,7 +138,7 @@
 		$circles	= 20;
 		$points		= 32;
 
-		for ($i = 0, $cp = $circles * $points; $i < $cp - 1; $i++)
+		for ($i = 0, $cp = ($circles * $points) - 1; $i < $cp; $i++)
 		{
 			$theta += $thetac;
 			$rad = $radius * ($i / $points);