Displaying 1 result from an estimated 1 matches for "screen_res".
2006 Jul 08
0
[tip] running games on a dedicated display
...arting a new display
with the desired res and bpp and running the game. Common resolutions
and depths are defined in advance in /etc/X11/xorg.conf.
Here's what my war3.sh script looks like:
[snip]
#!/bin/sh
# Game parameters.
PROGRAM="c:/Program Files/Warcraft III/war3.exe -opengl"
SCREEN_RES="640x480" # Must match screen identifier in XF86Config
SCREEN_BPP="24" # Must be defined for screen in XF86Config
GAMMA="1.75"
winerun.sh "$PROGRAM" $SCREEN_RES $SCREEN_BPP $GAMMA
[snip]
Here's the winerun.sh script. Feel free to tweak it to your l...