Same here, Nvidia driver 295.73 (Win7 x64)
Do you also have the problem of invisible external stores? (rockets, bombs)
They're only visible after I fire them ...
This DLL should be installed when DCS World is installed. Are you sure it was selected? (it's in the same installlation screen where you can select to install DirectX)
The torrent contains the following files:
- DCS World_en_1.1.2.0.exe
- DCS World_en_1.1.2.0-1.bin
- DCS World_en_1.1.2.0-2.bin
- DCS World_en_1.1.2.0-3.bin
- P-51D_1.1.2.0.exe
Total files size is about 4.97 GB.
I hope they will create more realistic textures. DCS' textures look too perfect, cartoonish ... Could use some dirt, scratches, cracks, rust, chipped paint ... More variation in textures would also help prevent the "generic" look.
PAE is not related to extending 32-bit user-mode process address space.
Strictly speeking it is possible to access more than 4GB per 32-bit user-mode process using Address Windowing Extensions ... or you could to the sane thing and go 64-bit ...
This is not valid for some server versions of 32-bit Windows (Enterprise and Datacenter editions), which can use up to 64GB of physical memory using "Physical Address Extension".
He's not wrong. Addressable memory on a 32-bit desktop version of Windows is limited to 4GB. This is reduced by the address space used by devices such as video cards. (which could be signficant nowadays). The address space of the devices overlaps with the address space of the "physical memory" ("RAM"), making part of the physical memory unaddressable.
Address space per user-mode process (applies to "supported" versions of Windows):
32-bit app / 32-bit Windows / app is not "large address aware" (= default): 2GB
32-bit app / 32-bit Windows / app is "large address aware" and /3GB flag is set: 3GB (or between 2GB and 3GB when using USERVA switch)
32-bit app / 64-bit Windows / app is not "large address aware" (= default): 2GB
32-bit app / 64-bit Windows / app is "large address aware": 4GB
64-bit app / 64-bit Windows / app is "large address aware" (= default) : 8TB
64-bit app / 64-bit Windows / app is not "large address aware" : 2GB
Source: MSDN