Skip to content

Commit

Permalink
Colored background in Circle example.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidgomes committed Aug 16, 2014
1 parent 4503930 commit 515a09d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -34,7 +34,7 @@ function PlayState() {
};

this.draw = function() {
penta.clearCanvas();
penta.clearCanvas('#333'); // Colored background

this.ball.draw();
};
Expand Down
2 changes: 1 addition & 1 deletion demos/circle_example/PlayState.js
Expand Up @@ -23,7 +23,7 @@ function PlayState() {
};

this.draw = function() {
penta.clearCanvas();
penta.clearCanvas('#333');

this.ball.draw();
};
Expand Down

0 comments on commit 515a09d

Please sign in to comment.