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
This commit is contained in:
Rudolf Cornelissen 2004-08-02 19:17:42 +00:00
parent 3c71865a51
commit c87c9d9960

View File

@ -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;