mirror of
https://github.com/FunkyFr3sh/cnc-ddraw.git
synced 2025-03-25 01:57:47 +01:00
adjust default settings for claw
This commit is contained in:
parent
453d266d76
commit
a119eddd53
14
src/config.c
14
src/config.c
@ -167,10 +167,10 @@ static void cfg_create_ini()
|
|||||||
"\n"
|
"\n"
|
||||||
"; Override the width/height settings shown above and always stretch to fullscreen\n"
|
"; Override the width/height settings shown above and always stretch to fullscreen\n"
|
||||||
"; Note: Can be combined with 'windowed=true' to get windowed-fullscreen aka borderless mode\n"
|
"; Note: Can be combined with 'windowed=true' to get windowed-fullscreen aka borderless mode\n"
|
||||||
"fullscreen=false\n"
|
"fullscreen=true\n"
|
||||||
"\n"
|
"\n"
|
||||||
"; Run in windowed mode rather than going fullscreen\n"
|
"; Run in windowed mode rather than going fullscreen\n"
|
||||||
"windowed=false\n"
|
"windowed=true\n"
|
||||||
"\n"
|
"\n"
|
||||||
"; Maintain aspect ratio\n"
|
"; Maintain aspect ratio\n"
|
||||||
"maintas=false\n"
|
"maintas=false\n"
|
||||||
@ -201,7 +201,7 @@ static void cfg_create_ini()
|
|||||||
"posY=-32000\n"
|
"posY=-32000\n"
|
||||||
"\n"
|
"\n"
|
||||||
"; Renderer, possible values: auto, opengl, openglcore, gdi, direct3d9, direct3d9on12 (auto = try direct3d9/opengl, fallback = gdi)\n"
|
"; Renderer, possible values: auto, opengl, openglcore, gdi, direct3d9, direct3d9on12 (auto = try direct3d9/opengl, fallback = gdi)\n"
|
||||||
"renderer=auto\n"
|
"renderer=opengl\n"
|
||||||
"\n"
|
"\n"
|
||||||
"; Developer mode (don't lock the cursor)\n"
|
"; Developer mode (don't lock the cursor)\n"
|
||||||
"devmode=false\n"
|
"devmode=false\n"
|
||||||
@ -227,7 +227,7 @@ static void cfg_create_ini()
|
|||||||
"screenshotdir=.\\Screenshots\\\n"
|
"screenshotdir=.\\Screenshots\\\n"
|
||||||
"\n"
|
"\n"
|
||||||
"; Switch between windowed/borderless modes with alt+enter rather than windowed/fullscreen modes\n"
|
"; Switch between windowed/borderless modes with alt+enter rather than windowed/fullscreen modes\n"
|
||||||
"toggle_borderless=false\n"
|
"toggle_borderless=true\n"
|
||||||
"\n"
|
"\n"
|
||||||
"\n"
|
"\n"
|
||||||
"\n"
|
"\n"
|
||||||
@ -236,7 +236,7 @@ static void cfg_create_ini()
|
|||||||
"\n"
|
"\n"
|
||||||
"\n"
|
"\n"
|
||||||
"; Hide WM_ACTIVATEAPP and WM_NCACTIVATE messages to prevent problems on alt+tab\n"
|
"; Hide WM_ACTIVATEAPP and WM_NCACTIVATE messages to prevent problems on alt+tab\n"
|
||||||
"noactivateapp=false\n"
|
"noactivateapp=true\n"
|
||||||
"\n"
|
"\n"
|
||||||
"; Max game ticks per second, possible values: -1 = disabled, -2 = refresh rate, 0 = emulate 60hz vblank, 1-1000 = custom game speed\n"
|
"; Max game ticks per second, possible values: -1 = disabled, -2 = refresh rate, 0 = emulate 60hz vblank, 1-1000 = custom game speed\n"
|
||||||
"; Note: Can be used to slow down a too fast running game, fix flickering or too fast animations\n"
|
"; Note: Can be used to slow down a too fast running game, fix flickering or too fast animations\n"
|
||||||
@ -249,11 +249,11 @@ static void cfg_create_ini()
|
|||||||
"\n"
|
"\n"
|
||||||
"; Disable fullscreen-exclusive mode for the direct3d9*/opengl* renderers\n"
|
"; Disable fullscreen-exclusive mode for the direct3d9*/opengl* renderers\n"
|
||||||
"; Note: Can be used in case some GUI elements like buttons/textboxes/videos/etc.. are invisible\n"
|
"; Note: Can be used in case some GUI elements like buttons/textboxes/videos/etc.. are invisible\n"
|
||||||
"nonexclusive=false\n"
|
"nonexclusive=true\n"
|
||||||
"\n"
|
"\n"
|
||||||
"; Force CPU0 affinity, avoids crashes/freezing, *might* have a performance impact\n"
|
"; Force CPU0 affinity, avoids crashes/freezing, *might* have a performance impact\n"
|
||||||
"; Note: Disable this if the game is not running smooth or there are sound issues\n"
|
"; Note: Disable this if the game is not running smooth or there are sound issues\n"
|
||||||
"singlecpu=true\n"
|
"singlecpu=false\n"
|
||||||
"\n"
|
"\n"
|
||||||
"; Available resolutions, possible values: 0 = Small list, 1 = Very small list, 2 = Full list\n"
|
"; Available resolutions, possible values: 0 = Small list, 1 = Very small list, 2 = Full list\n"
|
||||||
"; Note: Set this to 2 if your chosen resolution is not working or does not show up in the list\n"
|
"; Note: Set this to 2 if your chosen resolution is not working or does not show up in the list\n"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user