Rename 'expanded' to 'expended'. Was this a typo?

Change-Id: I2feaee4225f04e3b93f8ccde555090437238ee0f
This commit is contained in:
Christ van Willegen 2015-04-08 09:46:42 +02:00 committed by Thomas Martitz
parent 06e76a375b
commit ea334cf650

View file

@ -212,7 +212,7 @@ function random_color()
end end
function start_round(level, goal, nrBalls, total) function start_round(level, goal, nrBalls, total)
local player_added, score, exit, nrExpandedBalls = false, 0, false, 0 local player_added, score, exit, nrExpendedBalls = false, 0, false, 0
local balls, explodedBalls = {}, {} local balls, explodedBalls = {}, {}
local cursor = Cursor:new() local cursor = Cursor:new()
@ -257,7 +257,7 @@ function start_round(level, goal, nrBalls, total)
for _, explodedBall in ipairs(explodedBalls) do for _, explodedBall in ipairs(explodedBalls) do
if ball:checkHit(explodedBall) then if ball:checkHit(explodedBall) then
score = score + 100*level score = score + 100*level
nrExpandedBalls = nrExpandedBalls + 1 nrExpendedBalls = nrExpendedBalls + 1
table.insert(explodedBalls, ball) table.insert(explodedBalls, ball)
table.remove(balls, i) table.remove(balls, i)
break break
@ -280,7 +280,7 @@ function start_round(level, goal, nrBalls, total)
rb.lcd_clear_display() rb.lcd_clear_display()
set_foreground(DEFAULT_FOREGROUND_COLOR) set_foreground(DEFAULT_FOREGROUND_COLOR)
draw_positioned_string(0, 0, string.format("%d balls expanded", nrExpandedBalls)) draw_positioned_string(0, 0, string.format("%d balls expended", nrExpendedBalls))
draw_positioned_string(0, 1, string.format("Level %d", level)) draw_positioned_string(0, 1, string.format("Level %d", level))
draw_positioned_string(1, 1, string.format("%d level points", score)) draw_positioned_string(1, 1, string.format("%d level points", score))
draw_positioned_string(1, 0, string.format("%d total points", total+score)) draw_positioned_string(1, 0, string.format("%d total points", total+score))
@ -309,7 +309,7 @@ function start_round(level, goal, nrBalls, total)
end end
end end
return exit, score, nrExpandedBalls return exit, score, nrExpendedBalls
end end
-- Helper function to display a message -- Helper function to display a message
@ -361,11 +361,11 @@ while levels[idx] ~= nil do
display_message(rb.HZ*2, "Level %d: get %d out of %d balls", idx, goal, nrBalls) display_message(rb.HZ*2, "Level %d: get %d out of %d balls", idx, goal, nrBalls)
local exit, score, nrExpandedBalls = start_round(idx, goal, nrBalls, highscore) local exit, score, nrExpendedBalls = start_round(idx, goal, nrBalls, highscore)
if exit then if exit then
break -- Exiting.. break -- Exiting..
else else
if nrExpandedBalls >= goal then if nrExpendedBalls >= goal then
display_message(rb.HZ*2, "You won!") display_message(rb.HZ*2, "You won!")
idx = idx + 1 idx = idx + 1
highscore = highscore + score highscore = highscore + score