aboutsummaryrefslogtreecommitdiff
path: root/Source/Menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Menu.c')
-rw-r--r--Source/Menu.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/Source/Menu.c b/Source/Menu.c
index f3651e2..dd000fd 100644
--- a/Source/Menu.c
+++ b/Source/Menu.c
@@ -143,7 +143,6 @@ static void MainMenuRenderLevelList(void);
* **************************************/
static GsSprite MenuSpr;
-static GsSprite MenuStarSpr;
static SsVag BellSnd;
static SsVag AcceptSnd;
static TYPE_CHEAT TestCheat;
@@ -257,7 +256,6 @@ static void MainMenuInit(void)
"DATA\\SOUNDS\\BELL.VAG",
"DATA\\SOUNDS\\ACCEPT.VAG",
"DATA\\SPRITES\\BUTTONS.TIM",
- "DATA\\SPRITES\\MENUSTAR.TIM",
#ifndef NO_INTRO
"DATA\\SPRITES\\PSXDISK.TIM",
"DATA\\FONTS\\INTROFNT.TIM",
@@ -274,7 +272,6 @@ static void MainMenuInit(void)
&BellSnd,
&AcceptSnd,
&PSXButtons,
- &MenuStarSpr,
#ifndef NO_INTRO
&PsxDisk,
&PSXSDKIntroFont,
@@ -318,21 +315,6 @@ static void MainMenuInit(void)
MainMenuMinimumBtn = PLAY_BUTTON_INDEX;
- {
- enum
- {
- MENU_STAR_X = 32,
- MENU_STAR_Y = Y_SCREEN_RESOLUTION - 32,
- };
-
- MenuStarSpr.x = MENU_STAR_X;
- MenuStarSpr.y = MENU_STAR_Y;
- }
-
- MenuStarSpr.mx = MenuStarSpr.w >> 1;
- MenuStarSpr.my = MenuStarSpr.h >> 1;
- MenuStarSpr.rotate = 0;
-
SelectedLevel = LEVEL1;
MenuCheatInit();
@@ -419,8 +401,6 @@ void MainMenu(void)
GsSortCls(MAIN_MENU_BG_R, MAIN_MENU_BG_G, MAIN_MENU_BG_B);
- MenuStarSpr.rotate += ROTATE_ONE;
-
switch(menuLevel)
{
case PLAY_OPTIONS_LEVEL: