Edited by: Nimtra on 17/07/2011 20:01:15Read the site :P ... so here is the super short version
once you are in HKEY_CURRENT_USER -> software -> wine
create the new key ( copy paste it from the page, ) Direct3D , the make a new value inside that key, its of type REG_SZ . copy the name again from the site
also read the first paragrpahs on that page ^^.
Quote:
If a key or value does not exist, create it. All values are strings (REG_SZ) unless stated otherwise.
To create a new key if it does not exist:
In a terminal, type wine regedit and hit enter
Open the tree on the left to the section where you need to add it (e.g., HKEY_CURRENT_USER\Software\Wine)
Select the section you are going to add the new key to (e.g., Wine)
Right click and select New->Key
Type the name of the new key (taken from the list below)
Hit enter
Did I say read that page?
Or do you mean you dont know what to put in where?
look ath the example :
you need 2 values in the Direct3D key
VideoPciDeviceID and VideoPciVendorID .
If you read the text under VideoPciVendorIDyou will see that you can find out both parts .
You can run e.g.
Quote:
lspci | grep VGA
00:02.0 VGA compatible controller....
to find out where your graphics card is plugged in
then :
Quote:
lspci -n | grep 00:02.0
00:02.0 0300: 8086:a011
Then use the values according to the text.
Anyway. if that is not the problem, please tell me.