From 9dde7b272ef9402e6a23b0aa5a88bdcc83be9df6 Mon Sep 17 00:00:00 2001 From: Karl Kurbjun Date: Mon, 3 Apr 2006 00:28:13 +0000 Subject: 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. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9445 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/doom/m_menu.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'apps/plugins/doom/m_menu.c') 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 @@ // GNU General Public License for more details. // // $Log$ -// Revision 1.1 2006/03/28 15:44:01 dave +// Revision 1.2 2006/04/03 00:28:13 kkurbjun +// 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. +// +// Revision 1.1 2006-03-28 15:44:01 dave // Patch #2969 - Doom! Currently only working on the H300. // // @@ -1326,7 +1329,7 @@ M_WriteText } w = SHORT (hu_font[c].width); - if (cx+w > SCREENWIDTH) + if (cx+w > 320) break; // proff/nicolas 09/20/98 -- changed for hi-res // CPhipps - patch drawing updated -- cgit v1.2.3