shithub: choc

Download patch

ref: ecf457ddcbf481b451f37474b057a06e7d843b66
parent: 18efe412b69bf733c2a9cd544212e4fd3a3c636a
author: Simon Howard <fraggle@gmail.com>
date: Sun Mar 2 11:25:11 EST 2014

doom: Reverse detail graphic for BFG edition.

Use "ON" to mean "high detail", "OFF" for "low detail". The logic was
backwards.

--- a/src/doom/m_menu.c
+++ b/src/doom/m_menu.c
@@ -1007,7 +1007,7 @@
     // the BFG edition IWADs, use the "ON"/"OFF" graphics instead.
     if (bfgedition)
     {
-        detail_patch = msgNames[detailLevel];
+        detail_patch = msgNames[!detailLevel];
     }
     else
     {