From 2168cdbddd20f4986d829cf31e61b92f1a42c242 Mon Sep 17 00:00:00 2001 From: Alexander von Gluck IV Date: Wed, 3 Aug 2011 23:26:26 +0000 Subject: [PATCH] * bug fix, wrong offset git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42561 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/add-ons/accelerants/radeon_hd/accelerant.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/add-ons/accelerants/radeon_hd/accelerant.cpp b/src/add-ons/accelerants/radeon_hd/accelerant.cpp index e61078a3d0..3e2e55b67c 100644 --- a/src/add-ons/accelerants/radeon_hd/accelerant.cpp +++ b/src/add-ons/accelerants/radeon_hd/accelerant.cpp @@ -163,7 +163,7 @@ init_common(int device, bool isClone) if (gInfo->rom_area < 0) TRACE("%s: Clone of AtomBIOS failed!\n", __func__); - if (gInfo->rom[0] != 0x55 || gInfo->rom[0] != 0xAA) + if (gInfo->rom[0] != 0x55 || gInfo->rom[1] != 0xAA) TRACE("%s: didn't find a VGA bios in cloned region!\n", __func__); sharedCloner.Keep();