Skip to content

Commit

Permalink
Fixed bottom right corner initFrozenify() bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
forteri76 committed May 29, 2014
1 parent cf6e805 commit da7126e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/jfedor/frozenbubble/FrozenGame.java
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ private void initFrozenify() {
this.addSprite(freezeLaunchBubble);
this.addSprite(freezeNextBubble);

frozenifyX = LevelManager.NUM_COLS - 1;
frozenifyX = LevelManager.NUM_COLS;
frozenifyY = LevelManager.NUM_ROWS - 1;
frozenify = true;
}
Expand Down

0 comments on commit da7126e

Please sign in to comment.