diff --git a/stepmania/src/Makefile.am b/stepmania/src/Makefile.am
index fb67263acd..963e10c446 100644
--- a/stepmania/src/Makefile.am
+++ b/stepmania/src/Makefile.am
@@ -58,7 +58,7 @@ StepMania = global.h ScreenDimensions.h StdString.h StepMania.cpp StepMania.h
Transitions = \
Transition.cpp Transition.h TransitionFade.cpp TransitionFade.h \
TransitionOniFade.cpp TransitionOniFade.h \
-TransitionStarWipe.cpp TransitionStarWipe.h TransitionBGAnimation.cpp TransitionBGAnimation.h
+TransitionBGAnimation.cpp TransitionBGAnimation.h
Actors = \
Actor.cpp Actor.h ActorFrame.cpp ActorFrame.h BitmapText.cpp BitmapText.h Quad.h Sample3dObject.cpp Sample3dObject.h \
diff --git a/stepmania/src/ScreenEz2SelectMusic.h b/stepmania/src/ScreenEz2SelectMusic.h
index 5c0fec53e7..1dabcc6355 100644
--- a/stepmania/src/ScreenEz2SelectMusic.h
+++ b/stepmania/src/ScreenEz2SelectMusic.h
@@ -14,7 +14,6 @@
#include "Screen.h"
#include "Sprite.h"
#include "BitmapText.h"
-#include "TransitionStarWipe.h"
#include "MenuElements.h"
#include "TipDisplay.h"
#include "MusicBannerWheel.h"
diff --git a/stepmania/src/StepMania.dsp b/stepmania/src/StepMania.dsp
index 1b3578ce2c..7d0ef39d1a 100644
--- a/stepmania/src/StepMania.dsp
+++ b/stepmania/src/StepMania.dsp
@@ -910,14 +910,6 @@ SOURCE=.\TransitionOniFade.cpp
SOURCE=.\TransitionOniFade.h
# End Source File
-# Begin Source File
-
-SOURCE=.\TransitionStarWipe.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=.\TransitionStarWipe.h
-# End Source File
# End Group
# Begin Group "Actors"
diff --git a/stepmania/src/StepMania.vcproj b/stepmania/src/StepMania.vcproj
index f0b90ea0c0..b2fabb40cc 100644
--- a/stepmania/src/StepMania.vcproj
+++ b/stepmania/src/StepMania.vcproj
@@ -971,12 +971,6 @@ cl /Zl /nologo /c verstub.cpp /Fo$(IntDir)\
-
-
-
-
GetPathTo("Graphics","gameplay closing star") );
-}
-
-void TransitionStarWipe::OpenWipingLeft( ScreenMessage send_when_done )
-{
- Transition::OpenWipingLeft( send_when_done );
- LoadNewStarSprite( THEME->GetPathTo("Graphics","gameplay closing star") );
-}
-
-void TransitionStarWipe::CloseWipingRight(ScreenMessage send_when_done )
-{
- Transition::CloseWipingRight( send_when_done );
- LoadNewStarSprite( THEME->GetPathTo("Graphics","gameplay opening star") );
-}
-
-void TransitionStarWipe::CloseWipingLeft( ScreenMessage send_when_done )
-{
- Transition::CloseWipingLeft( send_when_done );
- LoadNewStarSprite( THEME->GetPathTo("Graphics","gameplay opening star") );
-}
-
-void TransitionStarWipe::LoadNewStarSprite( CString sFileName )
-{
- m_sprStar.Load( sFileName );
- m_iStarWidth = (int)m_sprStar.GetZoomedWidth();
- m_iStarHeight = (int)m_sprStar.GetZoomedHeight();
-}
diff --git a/stepmania/src/TransitionStarWipe.h b/stepmania/src/TransitionStarWipe.h
deleted file mode 100644
index 9b8dd3fe0b..0000000000
--- a/stepmania/src/TransitionStarWipe.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
------------------------------------------------------------------------------
- File: TransitionStarWipe.cpp
-
- Desc: Shooting start across the screen leave a black trail.
-
- Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
------------------------------------------------------------------------------
-*/
-
-#ifndef _TransitionStarWipe_H_
-#define _TransitionStarWipe_H_
-
-
-#include "Transition.h"
-#include "Quad.h"
-
-
-class TransitionStarWipe : public Transition
-{
-public:
- TransitionStarWipe();
- ~TransitionStarWipe();
-
- virtual void DrawPrimitives();
-
- void OpenWipingRight( ScreenMessage send_when_done );
- void OpenWipingLeft( ScreenMessage send_when_done );
- void CloseWipingRight(ScreenMessage send_when_done );
- void CloseWipingLeft( ScreenMessage send_when_done );
-
-protected:
- void LoadNewStarSprite( CString sFileName );
-
- Sprite m_sprStar;
- int m_iStarWidth;
- int m_iStarHeight;
-
- Quad m_rect;
-};
-
-
-
-
-#endif