Skip to content

Commit

Permalink
fix compile error introduced during cherry-pick
Browse files Browse the repository at this point in the history
  • Loading branch information
hoijui committed Nov 22, 2010
1 parent cca93cb commit d341cfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rts/Rendering/Models/3DModel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ void S3DModelPiece::DrawStatic() const
{
glPushMatrix();
glTranslatef(offset.x, offset.y, offset.z);
glCallList(displistID);
glCallList(dispListID);
for (std::vector<S3DModelPiece*>::const_iterator ci = childs.begin(); ci != childs.end(); ci++) {
(*ci)->DrawStatic();
}
Expand Down

0 comments on commit d341cfa

Please sign in to comment.