Be the Ultimate Modern Warfare General.
Command and Conquer Generals puts your trigger finger on
the pulse of modern warfare. Prepare your forces, General—it's time to
engage in the next generation of real-time strategy.
Application Details:
Version: | 1.0x |
License: | Retail |
URL: | http://www.commandandconquer.c... |
Votes: | 4 |
Latest Rating: | Gold |
Latest Wine Version Tested: | 6.0.1 |
Maintainers: About Maintainership
What works
- Installation (with work around) - Splash screen
What does not
The game does not load.
Workarounds
What was not tested
Playing the game.
Hardware tested
Graphics:
Additional Comments
If you copy the data off the CD's so that it's all in one spot, then run the setup from there, it will install. Running it displays the splash screen and then hangs. Applying the 1.08 patch does not help. Applying a no-cd crack does not help.
Operating system | Test date | Wine version | Installs? | Runs? | Used Workaround? | Rating | Submitter | ||
Show | Ubuntu 20.04 "Focal" (+ variants like Kubuntu) | Aug 24 2021 | 6.0.1 | No, but has workaround | Yes | Yes | Gold | nulll | |
Show | Debian GNU/Linux 8.x "Jessie" x86_64 | Jul 26 2016 | 1.9.15 | Yes | Yes | No | Platinum | Daniel Jones | |
Show | Debian GNU/Linux 8.x "Jessie" x86_64 | Jul 24 2016 | 1.9.15 | Yes | Yes | No | Platinum | Daniel Jones | |
Show | Ubuntu 14.04 "Trusty" amd64 (+ variants like Kubuntu) | Mar 06 2016 | 1.9.4 | Yes | No | No | Garbage | an anonymous user | |
Show | Linux Mint 17.3 "Rosa" x86_64 | Sep 14 2016 | 1.6.2 | Yes | Yes | No | Platinum | an anonymous user |
The game should mostly run out of the box if you install it from the CDs.
You might need a NoCD crack.
If you already have a locally installed version of the game,
be aware that General won't start without some specific registry entries.
Mandatory entries include the game path, the language and the key.
The following note is a script that automated the registration of the game.
Save it locally, make it executable and start it from a shell.
It will ask you for the installation path, the language and the keys.
You can also preset keys within the script to make it easy to deploy for LAN parties.
--
Graphics: sidescreen scrolling does not work in windowed mode. You can activate
the virtual desktop in winecfg though.
You can change the game resolution to an arbirary value via the command line
parameters `-xres X -yres Y`.
To make the changes permanent after the game has been start once,
go to the "Command and Conquer Generals Zero Hour Data" (by default in your home
directory), edit the Options.ini and set the Resolution to the desired value
(the value of the virtual desktop if you use it).
No winetricks needed, runs out of the box. If you encounter problems, install d3dx9 (winetricks d3dx9).
#!/bin/sh usage () { cat <&2 Usage: ${0##*/} [MODE] [OPTIONS] Setup Command & Conquer: Generals and start the game. If started from a TTY, an X session will be automatically started. MODE: generals: Original game. zerohour: Official extension (default if found). OPTIONS: -quickstart: Disable 3D menu for faster startup. -xres : Horizontal resolution. -yres : Vertical resolution. -noshaders: Improve performance on weak graphic cards. EOF } [ -z "$GAMEROOT" ] && GAMEROOT="$HOME/games" [ -z "$GAMEPATH" ] && GAMEPATH="$GAMEROOT" [ "$1" = "-h" ] && usage && exit [ "$1" = "--" ] && shift ## Start X if needed. # TODO: Do this first or last? # If last, maybe errors can be caught before and printed to TTY. Compare. # If last, need more work on the parameters. if [ -z "$DISPLAY" ]; then exec xinit "$(command -v "$0")" "$@" -- :1 vt$XDG_VTNR fi ## Game mode. mode="zerohour" echo "$1" | grep -q '^-' && mode="$1" && shift ## Registry functions ## On x86_64, x86-specific nodes are stored in a sub-node. regnode32="" [ "$(uname -m)" = "x86_64" ] && file $(command -v wine) | grep -q '64-bit' && regnode32='\\Wow6432Node' ## Return the value of the registry KEY of NODE. ## If KEY is omitted, return the default value. regquery() # $1=node [$2=key] { if [ $# -eq 1 ]; then ## "reg query" uses CRLF (\r\n) newlines, hence the call to 'tr'. # echo "QUERY: '$(wine cmd /c reg query "$1" /ve)'" wine cmd /c reg query "$1" /ve | tr -d '\r' | \ awk '/(Default)/ {if($3) print substr($0, index($0, $3))}' else wine cmd /c reg query "$1" /v "$2" | tr -d '\r' | \ awk -v key="$2" '$0 ~ key {if($3) print substr($0, index($0, $3))}' fi ## The 'awk' expression remove the first two fields and the leading whitespace. } ## Set KEY of NODE to the VALUE of type TYPE. ## TYPE can be REG_SZ (default), REG_DWORD, REG_EXPAND_SZ, REG_MULTI_SZ. ## If KEY is omitted, set the default value. regadd() # $1=node $2=value [$3=key] [$4=type] { local switch="/ve" local type="REG_SZ" [ $# -ge 3 ] && switch="/v" [ $# -ge 4 ] && type="$4" wine cmd /c reg add "$1" /d "$2" $switch "$3" /t $type /f } path_win2unix() # $1=path { printf '%s' "$1" | awk '{sub(/^Z:\\/, "/"); gsub(/\\/, "/"); print}' } ## Add the registry nodes. if [ -z "$(regquery "HKEY_LOCAL_MACHINE\\Software$regnode32\\Electronic Arts\\EA Games\\Generals")" ]; then cat<<\EOF | regedit - Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\Software\Electronic Arts\EA Games\Generals] "InstallPath"="" "Language"="" "MapPackVersion"=dword:00002710 "Proxy"="" "Version"=dword:00001008 [HKEY_LOCAL_MACHINE\Software\Electronic Arts\EA Games\Generals\ergc] @="" EOF fi if [ -z "$(regquery "HKEY_LOCAL_MACHINE\\Software$regnode32\\Electronic Arts\\EA Games\\Command and Conquer Generals Zero Hour")" ]; then cat<<\EOF | regedit - Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\Software\Electronic Arts\EA Games\Command and Conquer Generals Zero Hour] "InstallPath"="" "Language"="" "MapPackVersion"=dword:00002710 "Proxy"="" "UserDataLeafName"="Command and Conquer Generals Zero Hour Data" "Version"=dword:00001004 [HKEY_LOCAL_MACHINE\Software\Electronic Arts\EA Games\Command and Conquer Generals Zero Hour\ergc] @="" EOF fi ## Game settings. gamepath() # $1=node { ## We _need_ a global here so that we can get the return value after we've ## called this function. path=$(regquery "$1" InstallPath) [ -n "$path" ] && return echo "Working directory: $(pwd)" echo -n "Path to game folder: " read path ## TODO: Support drive letter dynamically. ## WARNING: realpath is mandatory here, but it's not portable. path="Z:$(realpath "$path" | sed 's@/@\\@g')" ## Trailing backslash required. regadd "$1" "$path\\" InstallPath } gameserial() # $1=node $2=serial_list { ## We _need_ a global here so that we can get the return value after we've ## called this function. serial=$(regquery "$1") [ -n "$serial" ] && return cat < $(echo "$2" | awk '{print NR, $0}') EOF echo -n "Select an entry: " read choice echo if [ "$choice" -eq 0 ]; then echo -n "Enter serial: " read serial echo else serial=$(echo "$2" | awk "NR == $choice {print; exit}") fi regadd "$1" "$serial" } gamelang() # $1=node { ## We _need_ a global here so that we can get the return value after we've ## called this function. lang=$(regquery "$1" Language) [ -n "$lang" ] && return while [ "$lang" != "english" ] && \ [ "$lang" != "french" ] && \ [ "$lang" != "german" ] ; do echo -n "Language (english, french, german): " read lang echo lang=$(echo "$lang" | awk '{print tolower($0)}') done regadd "$1" "$lang" Language } ## Register game. echo "==> Generals" serial_list_generals="PRESET-KEY-#1 PRESET-KEY-#2 PRESET-KEY-#3 PRESET-KEY-#4 PRESET-KEY-#5 PRESET-KEY-#6 PRESET-KEY-#7 PRESET-KEY-#8" gamepath "HKEY_LOCAL_MACHINE\\Software$regnode32\\Electronic Arts\\EA Games\\Generals" path_generals=$(path_win2unix "$path") gameserial "HKEY_LOCAL_MACHINE\\Software$regnode32\\Electronic Arts\\EA Games\\Generals\\ergc" "$serial_list_generals" serial_generals=$serial gamelang "HKEY_LOCAL_MACHINE\\Software$regnode32\\Electronic Arts\\EA Games\\Generals" lang_generals=$lang printf "Path: '%s'\n" "$path_generals" echo "Serial: $serial_generals" echo "Language: $lang_generals" path="$path_generals" echo "==> Zero Hour" serial_list_zerohour="PRESET-KEY-#1 PRESET-KEY-#2 PRESET-KEY-#3 PRESET-KEY-#4 PRESET-KEY-#5 PRESET-KEY-#6 PRESET-KEY-#7 PRESET-KEY-#8" gamepath "HKEY_LOCAL_MACHINE\\Software$regnode32\\Electronic Arts\\EA Games\\Command and Conquer Generals Zero Hour" path_zerohour=$(path_win2unix "$path") if [ -f "$path_zerohour"/generals.exe ]; then gameserial "HKEY_LOCAL_MACHINE\\Software$regnode32\\Electronic Arts\\EA Games\\Command and Conquer Generals Zero Hour\\ergc" "$serial_list_zerohour" serial_zerohour=$serial gamelang "HKEY_LOCAL_MACHINE\\Software$regnode32\\Electronic Arts\\EA Games\\Command and Conquer Generals Zero Hour" lang_zerohour=$lang printf "Path: '%s'\n" "$path_zerohour" echo "Serial: $serial_zerohour" echo "Language: $lang_zerohour" [ "$mode" != "generals" ] && path="$path_zerohour" else echo "Zero Hour not found." fi ## Keyboard settings. ## Some in-game shortcuts are bound to the key symbol while others are bound to the key code. ## For instance, in the French version with an AZERTY layout "a" builds a tank ## while "q" selects all unit; with a QWERTY layout "q" becomes "a" and shadows ## the tank binding. layout=$(setxkbmap -query -v 6 | awk '/^layout/ {printf " -layout " $2} /^variant/ {printf " -variant " $2} /^options/ {printf " -option " $2} END {printf "\n"}') lang="$lang_generals" if [ "$mode" = "zerohour" ]; then lang="$lang_zerohour" fi case "$lang" in french) setxkbmap fr ;; german) setxkbmap de ;; esac ## Video settings. # display=$(xrandr | awk '/ connected / {print $1; exit}') res=$(xrandr | awk '/\*/ {print $1;exit}') resx=$(echo "$res" | cut -dx -f1) resy=$(echo "$res" | cut -dx -f2) ## Start game. cd "$path" wine generals.exe -xres $resx -yres $resy -quickstart "$@" cd "$OLDPWD" ## Restore settings setxkbmap $layout
by Ambro on (May 1st 2007)
I also experienced the bug where the game failed to start after putting
my options.ini file to "~/Command and Conquer Generals Data". However,
I was able to bypass this bug by installing the game using the loki
installer.
To get this game working:
- Copy msvcirt.dll to "~/.wine/drive_c/windows/system32"
- Install the game using the loki installer ( www.liflg.org/?catid=7)
- Modify the "generals" script so it will only call wine
- Create the file "~/Command and Conquer Generals Data/options.ini"
and put the following inside (adjust the resolution) (this bypassed the
splash screen freeze for me):
AntiAliasing = 4
BuildingOcclusion = yes
CampaignDifficulty = 0
DynamicLOD = yes
ExtraAnimations = yes
GameSpyIPAddress = 0.0.0.0
Gamma = 50
IPAddress = 0.0.0.0
IdealStaticGameLOD = Low
LanguageFilter = false
MaxParticleCount = 5000
MusicVolume = 76
Resolution = 1024 768
SFX3DVolume = 79
SFXVolume = 71
ScrollFactor = 50
SendDelay = no
ShowSoftWaterEdge = yes
ShowTrees = yes
StaticGameLOD = Custom
TextureReduction = 0
UseAlternateMouse = no
UseCloudMap = yes
UseLightMap = yes
UseShadowDecals = yes
UseShadowVolumes = yes
VoiceVolume = 70
- Run winecfg and in the Audio tab, select OSS, and in "Hardware Acceleration", select "Emulation"
- Start the game by running "/generals -quickstart" (quickstart will bypass the problem with sound blocking the second movie)
The following comments are owned by whoever posted them. WineHQ is not responsible for what they say.
by Bobby Yu on Saturday December 24th 2022, 2:40
When I installed Wine 7.01 and placed Command and Conquer Generals original, the game installed by putting data files from both CDs 1 and 2 and ran the installer. No problems there.
When it is time to run Generals, the game keeps reporting a "DirectX 8.1 or higher needed" error or words to that effect.
I tried to install 8.1, 9.0c (using Winetricks), but the game did not run.
I also tried to use an options.ini file from the Internet and the error is still there.
So, on Wine 7.01, Command and Conquer Generals does not work due to a DirectX 8.1 error.
by Jimmy Reed on Thursday September 26th 2019, 12:18
I am using manjaro linux on a new mid range gaming rig bought in 2019. I have the original retail boxed version and installed off the discs. It took me ages to work out how to use the wine eject command as no guides come up when you web search and it doesn't seem to be in the faq. Below is the steps I had to take to get it working.
Steps
-------
Installed wine with a clean install and all suggested plugins mono, etc.
Insert cd 1 and mount it (I used Thunar File Manager to make mounting easy)
Browse to cd folder and run setup.exe with wine
Proceed with install instructions. When it wanted the second disk. It came up as an error box with a retry button, looking different from the windows version.
Open a terminal and execute:
wine eject D:
That ejects the disc.
Insert disc2 wait for the system to detect it then mount again like you did with disc1.
Hit retry and it should install, I didn't register it.
Inserted cd1 and ran the directx8.1 "setup.exe" with wine.
Created a options.ini file with these settings:
AntiAliasing = 4
BuildingOcclusion = yes
CampaignDifficulty = 0
DrawScrollAnchor =
DynamicLOD = yes
ExtraAnimations = yes
FirewallBehavior = 3
FirewallNeedToRefresh = FALSE
FirewallPortAllocationDelta = 0
GameSpyIPAddress = 192.168.1.2
Gamma = 69
IPAddress = 192.168.1.2
IdealStaticGameLOD = High
LanguageFilter = true
MaxParticleCount = 4861
MoveScrollAnchor =
MusicVolume = 55
Resolution = 1024 768
Retaliation = yes
SFX3DVolume = 79
SFXVolume = 71
ScrollFactor = 50
SendDelay = no
ShowSoftWaterEdge = yes
ShowTrees = yes
StaticGameLOD = Custom
TextureReduction = 0
UseAlternateMouse = no
UseCloudMap = yes
UseDoubleClickAttackMove = no
UseLightMap = yes
UseShadowDecals = yes
UseShadowVolumes = yes
VoiceVolume = 70
Copied that file to the "Command and Conquer Generals Data" folder inside wine's "My Documents". I also had to copy this file into general's program files folder.
Insert cd 1 and mount it then run the "generals.exe" with wine from the general's program files folder.
Then finally success!!!
As a side note after I got it running, I modified the options file's Resolution setting to "1920 1080". That works fine. I've also noticed that although it will change my display resolution when it starts, it won't restore it when I exit. I have no performance issues. The safedisc DRM is no problems. I tried everything to run this in windows 10, even signing the secdrv.sys didn't work, thankfully linux to the rescue.
by Chet on Monday July 16th 2018, 1:23
On modern wine versions, I haven't been able to get Zero Hour to work, but a couple things I did to get vanilla going:
- Playing with desktop enabled.
- I did disable winengstreamer (but that's probably not necessary to be honest). I also added openal32 (native, builtin) - again, not sure if it had any effect.
- I modified the script that's listed above a little bit to work with modern bash (just had to comment out some of the usage - you can remove it entirely if it's giving you an error).
- I had to create an options.ini file in C:\Users\[username]\documents (if the folder doesn't exist, create it). If the loading screen just freezes, this is probably the issue.
AntiAliasing = 1
BuildingOcclusion = yes
DrawScrollAnchor =
DynamicLOD = no
ExtraAnimations = yes
GameSpyIPAddress = 0.0.0.0
Gamma = 50
IPAddress = 0.0.0.0
IdealStaticGameLOD = High
LanguageFilter = true
MaxParticleCount = 5000
MoveScrollAnchor =
MusicVolume = 55
Resolution = 1024 768
Retaliation = yes
SFX3DVolume = 79
SFXVolume = 71
ScrollFactor = 50
SendDelay = no
ShowSoftWaterEdge = yes
ShowTrees = yes
StaticGameLOD = Custom
TextureReduction = 0
UseAlternateMouse = no
UseCloudMap = yes
UseDoubleClickAttackMove = no
UseLightMap = yes
UseShadowDecals = yes
UseShadowVolumes = yes
VoiceVolume = 100
- Get out there and conquer!
by JM on Wednesday July 2nd 2014, 6:22
err:module:import_dll Library API-MS-Win-Core-Interlocked-L1-1-0.dll (which is needed by L"C:\\Program Files\\EA Games\\Command and Conquer Generals\\MSVCIRT.dll") not found
err:module:import_dll Library API-MS-Win-Core-LibraryLoader-L1-1-0.dll (which is needed by L"C:\\Program Files\\EA Games\\Command and Conquer Generals\\MSVCIRT.dll") not found
err:module:import_dll Library API-MS-Win-Core-Misc-L1-1-0.dll (which is needed by L"C:\\Program Files\\EA Games\\Command and Conquer Generals\\MSVCIRT.dll") not found
err:module:import_dll Library API-MS-Win-Core-Profile-L1-1-0.dll (which is needed by L"C:\\Program Files\\EA Games\\Command and Conquer Generals\\MSVCIRT.dll") not found
err:module:import_dll Library API-MS-Win-Core-SysInfo-L1-1-0.dll (which is needed by L"C:\\Program Files\\EA Games\\Command and Conquer Generals\\MSVCIRT.dll") not found
err:module:import_dll Library API-MS-Win-Core-Synch-L1-1-0.dll (which is needed by L"C:\\Program Files\\EA Games\\Command and Conquer Generals\\MSVCIRT.dll") not found
err:module:import_dll Library MSVCIRT.dll (which is needed by L"C:\\Program Files\\EA Games\\Command and Conquer Generals\\game.dat") not found
err:module:LdrInitializeThunk Main exe initialization for L"C:\\Program Files\\EA Games\\Command and Conquer Generals\\game.dat" failed, status c0000135
by Borislav Sabev on Thursday July 3rd 2014, 5:32
Also is the filename absolutely the same?? Is the file readable?
Another thing to note are the double "\\" in your paths - just noting that they look strange.
Did you install the game or copy it over from somewhere?
Ultimately try to reinstall it.
Hope this helped. Post some more information if you need more help.
I am running the game just fine
by Gijs on Saturday December 1st 2012, 19:25
Having the same problem as one guy above: the game is very slow. When I try to click options, both in the main menu as in-game, the game crashes-to-desktop, leaving the resolution to 640×480 or something like that.
Further than that, the game runs fine. It's just terribly slow.
by Sven on Friday September 14th 2012, 0:08
I followed the how to but I fail even to start the installation.
It reports back with error:
1608: Unable to create IntsallDriver instance, Return code: -2147221164
I tried different Windows versions in the Wine configuration (98, 2000, xp) but none of them work.
I have to say that I start via rightclick and then "open with wine windows program launcher" as sudo wine setup.exe reports back "/.wine is not owned by you"
Any advice?
Thanks!!
by Sven on Friday September 14th 2012, 1:25
For the protocol:
Somehow my user settings for wine got messed up and I needed to put them back by:
sudo rm -rf ~/.wine
Afterwards I could install it without further problems.
Thanks for the great job in maintaining the wine db!
Best,
Sven
by Sven on Saturday September 15th 2012, 1:58
If you want a more modern type resolution then 1024x768:
Change home\Documents\Command and Conquer Generals Data\Options.ini Resolution = [to whatever your display has]
by w4ri0r on Saturday February 25th 2012, 9:55
i'm running Wine 1.4.3-rc3 on my Debian6(64bit) System.
Some System Infos:
OS: Debian 6.0.4
Kernel: 3.2.1
CPU: Intel Core i7-3930K @ 3,20GHz
RAM: 32GB
primary graphic adapter: NVIDIA GTX 560 Ti
secondary graphic adapter: NVIDIA GTX 560
I've installed the original NVIDIA driver and it works fine.
I'm using xinerama with my three 23" Samsung LCD TFTs(resolution 1920x1080).
C&C Generals is installed and the Videos on startup run normal.
But the main menu is very slow... it is not playable..
I've patched Generals to version 1.7
here is my options.ini:
-------------------------------
AntiAliasing = 2
BuildingOcclusion = no
CampaignDifficulty = 0
DrawScrollAnchor =
DynamicLOD = yes
ExtraAnimations = no
GameSpyIPAddress = 10.0.0.11
Gamma = 50
IPAddress = 10.0.0.11
IdealStaticGameLOD = Low
LanguageFilter = false
MaxParticleCount = 500
MoveScrollAnchor =
MusicVolume = 76
Resolution = 1152 864
SFX3DVolume = 79
SFXVolume = 71
ScrollFactor = 50
SendDelay = no
ShowSoftWaterEdge = no
ShowTrees = no
StaticGameLOD = Custom
TextureReduction = 2
UseAlternateMouse = no
UseCloudMap = no
UseLightMap = no
UseShadowDecals = no
UseShadowVolumes = no
VoiceVolume = 97
-------------------------------
And this is the Output from wine with enabled debugging:
-------------------------------
trace:wgl:wglGetProcAddress func: 'glAccum'
trace:wgl:X11DRV_WineGL_InitOpenglInfo GL version : 4.2.0 NVIDIA 295.20.
trace:wgl:X11DRV_WineGL_InitOpenglInfo GL renderer : GeForce GTX 560 Ti/PCIe/SSE2.
trace:wgl:X11DRV_WineGL_InitOpenglInfo GLX version : 1.4.
trace:wgl:X11DRV_WineGL_InitOpenglInfo Server GLX version : 1.4.
trace:wgl:X11DRV_WineGL_InitOpenglInfo Server GLX vendor: : NVIDIA Corporation.
trace:wgl:X11DRV_WineGL_InitOpenglInfo Client GLX version : 1.4.
trace:wgl:X11DRV_WineGL_InitOpenglInfo Client GLX vendor: : NVIDIA Corporation.
trace:wgl:X11DRV_WineGL_InitOpenglInfo Direct rendering enabled: True
trace:wgl:has_opengl GLX is up and running error_base = 143
trace:wgl:register_extension_string ''
trace:wgl:register_extension - 'wglGetIntegerv'
trace:wgl:register_extension - 'wglFinish'
trace:wgl:register_extension - 'wglFlush'
trace:wgl:register_extension_string 'WGL_ARB_create_context'
trace:wgl:register_extension - 'wglCreateContextAttribsARB'
trace:wgl:register_extension_string 'WGL_ARB_create_context_profile'
trace:wgl:register_extension_string 'WGL_ARB_pixel_format_float'
trace:wgl:register_extension_string 'WGL_ATI_pixel_format_float'
trace:wgl:register_extension_string 'WGL_ARB_extensions_string'
trace:wgl:register_extension - 'wglGetExtensionsStringARB'
trace:wgl:register_extension_string 'WGL_ARB_make_current_read'
trace:wgl:register_extension - 'wglGetCurrentReadDCARB'
trace:wgl:register_extension - 'wglMakeContextCurrentARB'
trace:wgl:register_extension_string 'WGL_ARB_multisample'
...
trace:wgl:wglGetCurrentContext returning 0x5335dd8
trace:wgl:wglGetCurrentContext returning 0x5335dd8
trace:wgl:wglGetCurrentContext returning 0x5335dd8
trace:wgl:wglGetCurrentContext returning 0x5335dd8
trace:wgl:wglGetCurrentContext returning 0x5335dd8
trace:wgl:wglGetCurrentContext returning 0x5335dd8
trace:wgl:wglGetCurrentContext returning 0x5335dd8
fixme:console:CONSOLE_DefaultHandler Terminating process 8 on event 0
err:mmtime:TIME_MMTimeStop Timer still active?!
-------------------------------
Is there anything i can do to Play C&C Generals?
thanks a lot ;-)
by K1773R on Saturday February 25th 2012, 10:10
by w4ri0r on Saturday February 25th 2012, 16:50
I've also tried to start the Game with the option "-OpenGL" and install d3dx9 via "winetricks d3dx9" both dosen't work...
by ekinox2 on Sunday February 19th 2012, 18:15
by K1773R on Sunday February 19th 2012, 21:44
by etienne on Wednesday March 30th 2011, 11:18
PAGE:
"appdb.winehq.org/objectManager.php?sClass=version&iId=4881"
The REG ARE:
[HKCU\Software\Wine\Direct3D]
VideoPciDeviceID=0x0141
I have make with the id from my graphic card, yepee, the ground apears... but not perfectly, (can have desert blocs in grass) i have tested different model ID, nothings, i have a stupid idea,
I have replaced the value By 0 (0x0000000) and... terrain is ok and with no bug, and the best, can add all effect in the game option ("Extra Ground Lighting" is now working), and Vertex Shader Support to yes and activate "Allow Pixel Shader" on wine is fully working
My graphiccard is a 7900GS.
Enjoy and have fun.
I have not tested thios on othe graphiccards, can work or not with othe, make test
by Jake ward on Monday August 9th 2010, 1:46
Game runs brilliant!
by lirel on Friday April 9th 2010, 17:33
use
LIBGL_DRIVERS_PATH=/usr/lib32/dri wine generals.exe
to hint libgl/wine to 32bit versions of the libraries.