diff options
| author | Xavier ASUS <xavi92psx@gmail.com> | 2018-11-29 02:07:02 +0100 |
|---|---|---|
| committer | Xavier ASUS <xavi92psx@gmail.com> | 2018-11-29 02:07:02 +0100 |
| commit | c33fcca6d44264834baf42de65fe9d19c0f62ff4 (patch) | |
| tree | b1ace729e2140b808d6c6372181ea60634a8624c /Source/Menu.c | |
| parent | 26bfe68b0964bf5cc94da480749cc580c9c99e78 (diff) | |
| download | airport-c33fcca6d44264834baf42de65fe9d19c0f62ff4.tar.gz | |
Set SERIAL_INTERFACE compile flag
Diffstat (limited to 'Source/Menu.c')
| -rw-r--r-- | Source/Menu.c | 20 |
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: |
