Wiki: Why do I get an error that I don't have d3dx9 42.dll?
-
winterfear
- Posts: 7
- Joined: Mon Jan 11, 2010 12:02 am
- Location: Black Mesa, Texas
-
winterfear
- Posts: 7
- Joined: Mon Jan 11, 2010 12:02 am
- Location: Black Mesa, Texas
This did happen after installing from the newest installer. Windows 8, freshest updates.
--> I thought all required functionality was included within the installer. --> did checking of prereqs go wrong?
--> I thought all required functionality was included within the installer. --> did checking of prereqs go wrong?
Last edited by lexaal on Sat Feb 16, 2013 10:13 pm, edited 1 time in total.
I have a johnson photo in my profile since 2010.
Installer searches within system directory (c:\windows\system32) for that file:
Maybe Windows 8 requires some testing.
Code: Select all
Function DirectX9Check
; http://www.toymaker.info/Games/html/d3dx_dlls.html
IfFileExists "$SYSDIR\d3dx9_43.dll" DirectXInstalledThe Escapist (Justin Emerson) @ Dec 21 2010, 02:33 PM:
The history of open-source Allegiance is paved with the bodies of dead code branches, forum flame wars, and personal vendettas. But a community remains because people still love the game.
pkk wrote:QUOTE (pkk @ Feb 17 2013, 04:36 AM) Installer searches within system directory (c:\windows\system32) for that file:
Maybe Windows 8 requires some testing.Code: Select all
Function DirectX9Check ; http://www.toymaker.info/Games/html/d3dx_dlls.html IfFileExists "$SYSDIR\d3dx9_43.dll" DirectXInstalled
Looks like we need it to also check for:
Code: Select all
Function DirectX9Check
; http://www.toymaker.info/Games/html/d3dx_dlls.html
IfFileExists "$SYSDIR\d3dx9_42.dll" DirectXInstalled

