From c87c9d9960f582ce62ad16ffda15c9207b021354 Mon Sep 17 00:00:00 2001 From: Rudolf Cornelissen Date: Mon, 2 Aug 2004 19:17:42 +0000 Subject: [PATCH] fixed NM2200 acc in 24bit mode (not used though I guess) git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8530 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/add-ons/accelerants/neomagic/engine/nm_acc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/add-ons/accelerants/neomagic/engine/nm_acc.c b/src/add-ons/accelerants/neomagic/engine/nm_acc.c index 4252c9ccd3..91e06e69ea 100644 --- a/src/add-ons/accelerants/neomagic/engine/nm_acc.c +++ b/src/add-ons/accelerants/neomagic/engine/nm_acc.c @@ -72,8 +72,8 @@ status_t nm_acc_init() /* b8-9 determine engine colordepth */ si->engine.control = (3 << 8); si->engine.depth = 3; - /* no acceleration supported on NM2070 - NM2200: let them fallthrough... */ - if (si->ps.card_type >= NM2230) break; + /* no acceleration supported on NM2070 - NM2160: let them fallthrough... */ + if (si->ps.card_type >= NM2200) break; default: LOG(8,("ACC: init, invalid bit depth\n")); return B_ERROR;