torenico wrote:I also have AVG, what did you do? Did you added pr.exe or bf2.exe to some exceptions lists?
I tried turning it off to see if it was the cause of the problems, then I installed Microsoft Security Essential instead because I couldn't be bothered to faff around with the thing.
whatshisname55 wrote:Windows counts video RAM along with system RAM. 32 bit limits the system to ~3GB RAM total, it uses system RAM first and will exclude video RAM if system RAM meets the limit.
Sorry but that doesn't sound very realistic to me. Video memory is on the graphics card and completely independent from the main memory, it is handled by the GPU not the CPU. The CPU gives instructions and state changes to the GPU which does the processing and outputs to screen. It is the GPU which handles it's own memory and address space. Some GPUs do use main memory either out of cheapness or because they only have a small frame-buffer.
Meshes and textures will be stored in the GPUs memory, but for each object in the scene the CPU has to call the API telling it where and how to draw the mesh. A few thousands separate API calls will be taxing on a single core, especially as it also has to handle physics(to an extent), network traffic, I/O and Animation/Skinning(may be done on the GPU) among other things.
Newer games/engines probably handle objects better and newer versions of OpenGL/DirectX require less taxing work from the CPU by using the instructions given by the CPU more effectively.
killonsight95 wrote:Well my graphics card requires 450+ watts and i only have 300 so i'd say it just slows it down, it's like when you halve the power into an old style lightbulb and the light dims.
I would have thought that wouldn't work since light bulbs are simple analog devices and chips are digital and require stable voltages and power input. However I don't know much about electronics.
Then again, Watts aren't everything with power supplies. Higher quality ones are more efficient and much more stable, and Amps are also important. Also 450+ Watts is probably the recommended watts for the whole system, based on peak requirements not on idle or normal usage.
Probably made some mistakes in this so pick away.