Skip to content

Commit

Permalink
Merge branch 'master' into next
Browse files Browse the repository at this point in the history
  • Loading branch information
SteelT1 committed May 11, 2020
2 parents 0fab9d0 + 78fe9af commit feced5e
Show file tree
Hide file tree
Showing 5 changed files with 81 additions and 69 deletions.
4 changes: 3 additions & 1 deletion src/d_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,9 @@ static void D_Display(void)
F_WipeStartScreen();
// Check for Mega Genesis fade
wipestyleflags = WSF_FADEOUT;
if (F_TryColormapFade(31))
if (wipegamestate == (gamestate_t)FORCEWIPE)
F_WipeColorFill(31);
else if (F_TryColormapFade(31))
wipetypepost = -1; // Don't run the fade below this one
F_WipeEndScreen();
F_RunWipe(wipetypepre, gamestate != GS_TIMEATTACK && gamestate != GS_TITLESCREEN);
Expand Down
5 changes: 5 additions & 0 deletions src/dehacked.c
Original file line number Diff line number Diff line change
Expand Up @@ -9239,6 +9239,7 @@ static const char *const MENUTYPES_LIST[] = {
"MP_CONNECT",
"MP_ROOM",
"MP_PLAYERSETUP", // MP_PlayerSetupDef shared with SPLITSCREEN if #defined NONET
"MP_SERVER_OPTIONS",

// Options
"OP_MAIN",
Expand All @@ -9248,10 +9249,14 @@ static const char *const MENUTYPES_LIST[] = {
"OP_P1MOUSE",
"OP_P1JOYSTICK",
"OP_JOYSTICKSET", // OP_JoystickSetDef shared with P2
"OP_P1CAMERA",

"OP_P2CONTROLS",
"OP_P2MOUSE",
"OP_P2JOYSTICK",
"OP_P2CAMERA",

"OP_PLAYSTYLE",

"OP_VIDEO",
"OP_VIDEOMODE",
Expand Down
Loading

0 comments on commit feced5e

Please sign in to comment.