Skip to content

Commit

Permalink
doom: Reverse detail graphic for BFG edition.
Browse files Browse the repository at this point in the history
Use "ON" to mean "high detail", "OFF" for "low detail". The logic was
backwards.
  • Loading branch information
fragglet committed Mar 2, 2014
1 parent 18efe41 commit ecf457d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doom/m_menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -1007,7 +1007,7 @@ void M_DrawOptions(void)
// the BFG edition IWADs, use the "ON"/"OFF" graphics instead.
if (bfgedition)
{
detail_patch = msgNames[detailLevel];
detail_patch = msgNames[!detailLevel];
}
else
{
Expand Down

0 comments on commit ecf457d

Please sign in to comment.