mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-27 12:50:44 +00:00
Temporarily disable Extra Options menu
This commit is contained in:
parent
295b53801d
commit
5ec6517a54
1 changed files with 16 additions and 10 deletions
26
src/m_menu.c
26
src/m_menu.c
|
@ -584,8 +584,9 @@ static menuitem_t PlaybackMenu[] =
|
||||||
{IT_ARROWS | IT_STRING, "M_PNVIEW", "Viewpoint 3", M_PlaybackAdjustView, 120},
|
{IT_ARROWS | IT_STRING, "M_PNVIEW", "Viewpoint 3", M_PlaybackAdjustView, 120},
|
||||||
{IT_ARROWS | IT_STRING, "M_PNVIEW", "Viewpoint 4", M_PlaybackAdjustView, 136},
|
{IT_ARROWS | IT_STRING, "M_PNVIEW", "Viewpoint 4", M_PlaybackAdjustView, 136},
|
||||||
|
|
||||||
{IT_CALL | IT_STRING, "M_POPTS", "More Options...", M_ReplayHut, 156},
|
//{IT_CALL | IT_STRING, "M_POPTS", "More Options...", M_ReplayHut, 156},
|
||||||
{IT_CALL | IT_STRING, "M_PEXIT", "Stop Playback", M_PlaybackQuit, 172},
|
//{IT_CALL | IT_STRING, "M_PEXIT", "Stop Playback", M_PlaybackQuit, 172},
|
||||||
|
{IT_CALL | IT_STRING, "M_PEXIT", "Stop Playback", M_PlaybackQuit, 156},
|
||||||
};
|
};
|
||||||
typedef enum
|
typedef enum
|
||||||
{
|
{
|
||||||
|
@ -601,7 +602,7 @@ typedef enum
|
||||||
playback_view2,
|
playback_view2,
|
||||||
playback_view3,
|
playback_view3,
|
||||||
playback_view4,
|
playback_view4,
|
||||||
playback_moreoptions,
|
//playback_moreoptions,
|
||||||
playback_quit
|
playback_quit
|
||||||
} playback_e;
|
} playback_e;
|
||||||
|
|
||||||
|
@ -1704,7 +1705,8 @@ menu_t PlaybackMenuDef = {
|
||||||
NULL,
|
NULL,
|
||||||
PlaybackMenu,
|
PlaybackMenu,
|
||||||
M_DrawPlaybackMenu,
|
M_DrawPlaybackMenu,
|
||||||
BASEVIDWIDTH/2 - 94, 2,
|
//BASEVIDWIDTH/2 - 94, 2,
|
||||||
|
BASEVIDWIDTH/2 - 88, 2,
|
||||||
0,
|
0,
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
|
@ -5741,10 +5743,12 @@ static void M_DrawPlaybackMenu(void)
|
||||||
for (i = playback_viewcount; i <= playback_view4; i++)
|
for (i = playback_viewcount; i <= playback_view4; i++)
|
||||||
PlaybackMenu[i].status = IT_DISABLED;
|
PlaybackMenu[i].status = IT_DISABLED;
|
||||||
|
|
||||||
PlaybackMenu[playback_moreoptions].alphaKey = 72;
|
//PlaybackMenu[playback_moreoptions].alphaKey = 72;
|
||||||
PlaybackMenu[playback_quit].alphaKey = 88;
|
//PlaybackMenu[playback_quit].alphaKey = 88;
|
||||||
|
PlaybackMenu[playback_quit].alphaKey = 72;
|
||||||
|
|
||||||
currentMenu->x = BASEVIDWIDTH/2 - 52;
|
//currentMenu->x = BASEVIDWIDTH/2 - 52;
|
||||||
|
currentMenu->x = BASEVIDWIDTH/2 - 44;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -5753,10 +5757,12 @@ static void M_DrawPlaybackMenu(void)
|
||||||
for (i = splitscreen+1; i < 4; i++)
|
for (i = splitscreen+1; i < 4; i++)
|
||||||
PlaybackMenu[playback_view1+i].status = IT_DISABLED;
|
PlaybackMenu[playback_view1+i].status = IT_DISABLED;
|
||||||
|
|
||||||
PlaybackMenu[playback_moreoptions].alphaKey = 156;
|
//PlaybackMenu[playback_moreoptions].alphaKey = 156;
|
||||||
PlaybackMenu[playback_quit].alphaKey = 172;
|
//PlaybackMenu[playback_quit].alphaKey = 172;
|
||||||
|
PlaybackMenu[playback_quit].alphaKey = 156;
|
||||||
|
|
||||||
currentMenu->x = BASEVIDWIDTH/2 - 94;
|
//currentMenu->x = BASEVIDWIDTH/2 - 94;
|
||||||
|
currentMenu->x = BASEVIDWIDTH/2 - 88;
|
||||||
}
|
}
|
||||||
|
|
||||||
// wip
|
// wip
|
||||||
|
|
Loading…
Reference in a new issue