Unable to get 2 monitor working
I have tried to follow the guide but am unable to get 2 displays to show?
I have the following setup
Windows 7 Ultimate 64
GeForce 7950 GX2 dual video card
Screen resolution is set to 'extend these displays'
I have two 1280x1024 monitors, I would like the main cockpit on the main screen, and the 2 MFCD displays on the monitor to the left of the main monitor.
I have created the following .lua file and placed it in the folder
..\\DCS A-10C\Config\MonitorSetup
_ = function(p) return p; end;
name = _('My_example');
Description = 'Two monitor configuration';
Viewports =
{
Center =
{
x = 1280;
y = 0;
width = 1280;
height = 1024;
viewDx = 0;
viewDy = 0;
aspect = 1.25;
}
}
LEFT_MFCD =
{
x = 0;
y = 192;
width = 640;
height = 640;
}
RIGHT_MFCD =
{
x = 640;
y = 192;
width = 640;
height = 640;
}
UIMainView = Viewports.Center
When I run DCS A-10C I select options and set the following
resolution - 2560x1024
monitors - select my lua file
full screen - off
After starting DCS I see the cockpit on the right display but nothing on the left display, just a black screen.
What am I doing wrong? Any help or suggestions would be greatly appreciated.
John