* bug fix, wrong offset

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42561 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Alexander von Gluck IV 2011-08-03 23:26:26 +00:00
parent 3f98c1831c
commit 2168cdbddd

View File

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