Skip to content

Commit

Permalink
Merge pull request openframeworks#775 from 2bbb/patch-1
Browse files Browse the repository at this point in the history
correct line 982. "p4.x, p4.x" -> "p4.x, p4.y"
  • Loading branch information
ofTheo committed Oct 17, 2011
2 parents fa65aff + b6a514d commit 24512c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/openFrameworks/gl/ofTexture.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -979,7 +979,7 @@ void ofTexture::draw(ofPoint p1, ofPoint p2, ofPoint p3, ofPoint p4){
p1.x, p1.y,
p2.x, p2.y,
p3.x, p3.y,
p4.x, p4.x
p4.x, p4.y
};

glEnableClientState( GL_TEXTURE_COORD_ARRAY );
Expand Down

0 comments on commit 24512c4

Please sign in to comment.