summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/m_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/doom/m_menu.c')
-rw-r--r--apps/plugins/doom/m_menu.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/plugins/doom/m_menu.c b/apps/plugins/doom/m_menu.c
index 34f3e22ce2..d84717b642 100644
--- a/apps/plugins/doom/m_menu.c
+++ b/apps/plugins/doom/m_menu.c
@@ -16,7 +16,10 @@
16// GNU General Public License for more details. 16// GNU General Public License for more details.
17// 17//
18// $Log$ 18// $Log$
19// Revision 1.1 2006/03/28 15:44:01 dave 19// Revision 1.2 2006/04/03 00:28:13 kkurbjun
20// Fixes graphic errors in scaling code, note sure about the fix in hu_lib.c though. I havn't seen any corrupted text but it may still need a proper fix.
21//
22// Revision 1.1 2006-03-28 15:44:01 dave
20// Patch #2969 - Doom! Currently only working on the H300. 23// Patch #2969 - Doom! Currently only working on the H300.
21// 24//
22// 25//
@@ -1326,7 +1329,7 @@ M_WriteText
1326 } 1329 }
1327 1330
1328 w = SHORT (hu_font[c].width); 1331 w = SHORT (hu_font[c].width);
1329 if (cx+w > SCREENWIDTH) 1332 if (cx+w > 320)
1330 break; 1333 break;
1331 // proff/nicolas 09/20/98 -- changed for hi-res 1334 // proff/nicolas 09/20/98 -- changed for hi-res
1332 // CPhipps - patch drawing updated 1335 // CPhipps - patch drawing updated