From af26d6420e93f01ec1e391ba826bf7f464b39d4d Mon Sep 17 00:00:00 2001 From: Rudolf Cornelissen Date: Mon, 10 Jan 2005 14:22:29 +0000 Subject: [PATCH] fixed arch typo. _now_ NV40 and higher should work, although still without acc. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10655 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/add-ons/accelerants/nvidia/SetDisplayMode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/add-ons/accelerants/nvidia/SetDisplayMode.c b/src/add-ons/accelerants/nvidia/SetDisplayMode.c index 6b0f42db01..80e3f7c2d9 100644 --- a/src/add-ons/accelerants/nvidia/SetDisplayMode.c +++ b/src/add-ons/accelerants/nvidia/SetDisplayMode.c @@ -314,7 +314,7 @@ status_t SET_DISPLAY_MODE(display_mode *mode_to_set) * attempting DMA on NV40 and higher because without it I can't get it going ATM. * Later on this can become a nv.settings switch, and maybe later we can even * forget about non-DMA completely (depends on 3D acceleration attempts). */ - if (si->ps.card_arch < NV40) + if (si->ps.card_arch < NV40A) nv_acc_init(); else nv_acc_init_dma();