hal.c device ids
Rob Crittenden <[email protected]>
| Newsgroups | gmane.comp.emulators.winex.devel |
|---|---|
| Message-ID | <[email protected]> |
Ove. You recently checked in a change to hal.c to set better device information (or fake it). This was done in d3d[89]_main.c a while back. The patch sets: + 0x600e, /* Fudge NVidia I think */ + 0x10de, /* GeForce 3 I think */ It looks like these values are reversed. 0x10de is the NVidia PCI Vendor ID. I see no video card 0x600e (and definitely not one from NVidia). The ID for a GeForce3 should be between 0x0200 and 0x0202. The file pci.ids (in /usr/share on my RH 7.2 box) contains a useful list of IDs. dwDeviceId is set to 0x0200 (really a GeForce3) in d3d[89]_main.c. rob