Bugzilla – Bug 4026On some XP machines SDL_INIT_VIDEO fails unless using windib so we should have some method of falling back to windib even if we've tried directxLast modified: 2009-09-14 08:34:56 EDT
This is a read-only, static archive of bugzilla.icculus.org
Bug 4026
- On some XP machines SDL_INIT_VIDEO fails unless using windib so we should have some method of falling back to windib even if we've tried directx
DescriptionZachary J. Slater
2009-03-30 22:34:09 EDT
set SDL_VIDEODRIVER=windib
is the only way to make ioquake3 work by default on some (windows xp) boxes, I'm still not sure WHY this happens or how a machine gets broken to the point where this happens. But...
I understand that ioquake3 currently tries forcing windib at SDL_INIT_VIDEO time if in_mouse = -1 or directx if in_mouse isn't -1.
However we should unset the variable if SDL_Init() fails and try again, and pray it works at all, no matter how the mouse responds
If you don't use that on this machine you get...:
ioq3 1.35_SVN1507 win_mingw-x86 Mar 2 2009
----- FS_Startup -----
Current search path:
C:\Documents and Settings\Joe\Application Data\Quake3/baseq3
C:\Program Files\ioquake3\baseq3\pak8.pk3 (9 files)
C:\Program Files\ioquake3\baseq3\pak7.pk3 (4 files)
C:\Program Files\ioquake3\baseq3\pak6.pk3 (64 files)
C:\Program Files\ioquake3\baseq3\pak5.pk3 (7 files)
C:\Program Files\ioquake3\baseq3\pak4.pk3 (272 files)
C:\Program Files\ioquake3\baseq3\pak3.pk3 (4 files)
C:\Program Files\ioquake3\baseq3\pak2.pk3 (148 files)
C:\Program Files\ioquake3\baseq3\pak1.pk3 (26 files)
C:\Program Files\ioquake3\baseq3\pak0.pk3 (3539 files)
C:\Program Files\ioquake3/baseq3
----------------------
4073 files in pk3 files
execing default.cfg
execing q3config.cfg
com_zoneMegs will be changed upon restarting.
couldn't exec autoexec.cfg
Hunk_Clear: reset the hunk ok
----- Client Initialization -----
Couldn't read q3history.
----- Initializing Renderer ----
-------------------------------
QKEY found.
----- Client Initialization Complete -----
----- R_Init -----
SDL_Init( SDL_INIT_VIDEO ) FAILED (No available video device)
Setting r_mode 8 failed, falling back on r_mode 3
SDL_Init( SDL_INIT_VIDEO ) FAILED (No available video device)
----- CL_Shutdown -----
RE_Shutdown( 1 )
-----------------------
This makes sense, because we're forcing this environment variable on Windows right now, for the mouse acceleration thingey. So if SDL_Init() fails, and we had forced this variable, we should unset and try again, in case we get lucky.
(this can happen when we force "directx" but the Windows installation is in an advanced state of corruption. Windib will still work in this case, many times, albeit with a sloppier mouse control.)
The function in question is Sys_GLimpInit() in sys_win32.c ...
--ryan.
Created attachment 2029 [details] Adds a "safe mode" for Gl initialisation