Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

Commit

Permalink
fixes two minor indent issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Aphid Mobile committed Nov 9, 2012
1 parent c5ebcc9 commit b13e40f
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,7 @@ public void buildTexture(FlipRenderer renderer, GL10 gl) {
final float textureWidth = texture.getWidth();

if (orientationVertical) {
topCard.setCardVertices(new float[] { 0f, viewHeight, 0f, // top
// left
topCard.setCardVertices(new float[] { 0f, viewHeight, 0f, // top left
0f, viewHeight / 2.0f, 0f, // bottom left
viewWidth, viewHeight / 2f, 0f, // bottom right
viewWidth, viewHeight, 0f // top right
Expand All @@ -142,8 +141,7 @@ public void buildTexture(FlipRenderer renderer, GL10 gl) {
viewHeight / textureHeight, viewWidth / textureWidth,
viewHeight / 2f / textureHeight });
} else {
topCard.setCardVertices(new float[] { 0f, viewHeight, 0f, // top
// left
topCard.setCardVertices(new float[] { 0f, viewHeight, 0f, // top left
0f, 0f, 0f, // bottom left
viewWidth / 2f, 0f, 0f, // bottom right
viewWidth / 2f, viewHeight, 0f // top right
Expand Down

0 comments on commit b13e40f

Please sign in to comment.