Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


BUG: game runs across both monitors
german Offline
Junior Member

Posts: 3
Threads: 1
Joined: Oct 2009
Reputation: 0
#2
Solved: 8 Years, 2 Months, 2 Weeks ago RE: BUG: game runs across both monitors

(10-09-2009, 04:16 PM)Andre Wrote: I am using dual monitors , (on Nvidia 8800, Ubuntu)
The desktop spans across two monitors.
I need to be able to run the game on only one of them. , or, if you like in 50% width of the desktop, with rendering done in the left part.

you could always enable windowed mode..

FYI: every other program sees the monitors as they are, and maximizes to ONE of them. Taskbar and other gnome panels also respect the border between the monitors.

Also - your game stop the media-buttons from working, (Volume buttons are important..) - you should not need to grab all the keyboard input.

Please help - I would love to test, and purchase it.

I had this problem as well, you need to create single-monitor entries in your /etc/X11/xorg.conf. Here is mine that lets me play full screen games at 1024x768 or 1680x1050 on one of my screens (the important bit is the metamodes option under the second "Screen" section):

Section "Monitor"
        Identifier     "Configured Monitor"
EndSection

Section "Monitor"
        Identifier     "Monitor0"
        VendorName     "Unknown"
        ModelName      "LG W2242"
        HorizSync       30.0 - 83.0
        VertRefresh     56.0 - 75.0
EndSection

Section "Screen"
        Identifier     "Default Screen"
        Device         "Configured Video Device"
        Monitor        "Configured Monitor"
        DefaultDepth    24
EndSection

Section "Screen"
        Identifier     "Screen0"
        Device         "Device0"
        Monitor        "Monitor0"
        DefaultDepth    24
        Option         "TwinView" "1"
        Option         "TwinViewXineramaInfoOrder" "CRT-0"
        Option         "metamodes" "1680x1050,1680x1050; 1680x1050; 1024x768,1024x768; 1024x768"
        SubSection "Display"
                Depth       24
        EndSubSection
EndSection

Section "Module"
        Load           "glx"
EndSection

Section "ServerLayout"
        Identifier     "Layout0"
        Screen      0  "Screen0" 0 0
EndSection

Section "Device"
        Identifier     "Configured Video Device"
        Driver         "nvidia"
        Option         "NoLogo" "True"
EndSection

Section "Device"
        Identifier     "Device0"
        VendorName     "NVIDIA Corporation"
        BoardName      "GeForce 7300 GT"
        Driver  "nvidia"
        Option  "NoLogo"        "True"
EndSection

Section "ServerFlags"
        Option         "Xinerama" "0"
EndSection

remember your monitor HorizSync and VertRefresh will probably be different, if they're not already in the file you'll need to look up what they are.
(This post was last modified: 10-19-2009, 04:54 PM by sarcinelli.)
10-19-2009, 04:52 PM
Find


Messages In This Thread
BUG: game runs across both monitors - by Andre - 10-09-2009, 04:16 PM



Users browsing this thread: 1 Guest(s)