Skip to content

Commit

Permalink
Tabs and spaces, not just spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
JNechaevsky committed Oct 30, 2023
1 parent 93ca70e commit be241f2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/doom/m_menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -2749,24 +2749,24 @@ boolean M_Responder (event_t* ev)
else if ((!netgame || netdemo) && key != 0 && key == key_menu_reloadlevel)
{
if (demoplayback)
{
{
// [crispy] replay demo lump or file
G_DoPlayDemo();
return true;
}
}
else
if (G_ReloadLevel())
return true;
}
else if ((!netgame || netdemo) && key != 0 && key == key_menu_nextlevel)
{
if (demoplayback)
{
{
// [crispy] go to next level
demo_gotonextlvl = true;
G_DemoGotoNextLevel(true);
return true;
}
}
else
if (G_GotoNextLevel())
return true;
Expand Down

0 comments on commit be241f2

Please sign in to comment.