Skip to content
This repository was archived by the owner on Apr 29, 2026. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions m_menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -1784,6 +1784,10 @@ void M_Drawer (void)
x = currentMenu->x;
y = currentMenu->y;
max = currentMenu->numitems;
// Hack to make shareware doom1.wad work (EpiDef lists four episodes but doom1.was has only
// three).
if (shareware && currentMenu == &EpiDef)
max = max - 1;

for (i=0;i<max;i++)
{
Expand Down