diff --git a/stepmania/src/Model.cpp b/stepmania/src/Model.cpp index b0d48fb9ac..98b975993d 100644 --- a/stepmania/src/Model.cpp +++ b/stepmania/src/Model.cpp @@ -290,11 +290,12 @@ void Model::DrawCelShaded() this->SetDiffuseAlpha(0); DISPLAY->SetPolygonMode( POLYGON_LINE ); DISPLAY->SetLineWidth( 4 ); + this->SetZWrite( false ); this->Draw(); this->SetDiffuseAlpha(1); - DISPLAY->ClearZBuffer(); this->SetGlow(RageColor(1,1,1,0)); DISPLAY->SetPolygonMode( POLYGON_FILL ); + this->SetZWrite( true ); this->Draw(); }