Skip to content

Commit

Permalink
Merge pull request ippa#29 from thorncp/master
Browse files Browse the repository at this point in the history
Quick fix for debug game state not working.
  • Loading branch information
ippa committed Jun 15, 2011
2 parents b45e324 + 03f0218 commit 4c55eb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/chingu/game_states/debug.rb
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def print_lines(text)
lines = text.respond_to?(:lines) ? text.lines : text

lines.each_with_index do |line,i|
@font.draw(line, @x_offset, @y_offset + height * (i+3), Z,1,1, @text_color)
@font.draw(line.strip, @x_offset, @y_offset + height * (i+3), Z,1,1, @text_color)
end
end

Expand Down

0 comments on commit 4c55eb0

Please sign in to comment.