Advertisement
Guest User

DDraw.cfg

a guest
Feb 9th, 2019
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; DDraw.cfg
  2. ; config file for DDraw.dll
  3.  
  4. ; PreserveAspectRatio = 0 (no) or 1 (yes)
  5. ; When set to 0, the display will be stretched.
  6. ; When set to 1, the aspect ratio will be preserved.
  7. PreserveAspectRatio = 0
  8.  
  9. ; EnableMultisamplingAntialiasing = 0 (no) or 1 (yes)
  10. ; When set to 0, single-sampling will be used.
  11. ; When set to 1, multi-sampling (MSAA) will be used if it is supported.
  12. EnableMultisamplingAntialiasing = 1
  13.  
  14. ; EnableAnisotropicFiltering = 0 (no) or 1 (yes)
  15. ; When set to 0, linear filtering will be used.
  16. ; When set to 1, anisotropic filtering will be used.
  17. EnableAnisotropicFiltering = 1
  18.  
  19. ; GenerateMipMaps = 0 (no) or 1 (yes) or -1 (autodetect)
  20. ; When set to 0, MipMaps are only used if provided by application
  21. ; When set to 1, MapMaps are automatically generated if the application provides none
  22. ; When set to -1, disabled to XWA (causes artefacts) and any other game that uses mipmaping at all
  23. ; Allows Anistropic filtering to work and avoid texture flickering
  24. ; for X-Wing vs. TIE Fighter in particular
  25. ; Use with high LOD - incorrectly labelled as blurry - in game settings for best effect
  26. GenerateMipMaps = -1
  27.  
  28. ; FillWireframe = 0 (solid) or 1 (wireframe)
  29. ; When set to 0, fill mode wil be solid.
  30. ; When set to 1, fill mode will be wireframe.
  31. FillWireframe = 0
  32.  
  33. ; ScalingType = 0 (standard linear scaling), 1 (smoother, alpha blended scaling), 2 (Lanczos scaling) or 3 (point-sampling)
  34. ScalingType = 2
  35.  
  36. ; XWAMode = -1 (autodetect), 1 (for X-Wing Alliance) or 0 (generic code, XvT/BoP)
  37. ; When set to -1, use XWA mode if the executable name is xwingalliance.exe
  38. ; When set to 0, disable XWA specific code that might causes issues with other programs.
  39. ; When set to 1, enable special code/workarounds for XWA.
  40. XWAMode = -1
  41.  
  42. ; Concourse3DScale = float value
  43. ; This set the scale of the ships in briefing and tech library.
  44. ; Original Concourse3DScale = 0.6
  45. ; DSUCP settings 0.48
  46. Concourse3DScale = 0.48
  47.  
  48. ; Fullscreen = 0 (default) or 1 (fullscreen mode) or -1 (force bordered windowed mode)
  49. ; Render using special fullscreen mode
  50. ; This might sometimes cause crashes, thus disabled by default
  51. ; Bordered windowed will also show strange behaviour e.g. related
  52. ; to mouse cursor handling.
  53. Fullscreen = 0
  54.  
  55. ; Force size 0 (default) means to use Desktop resolution
  56. Width = 0
  57. Height = 0
  58.  
  59. ; JoystickEmul = -1 (default, auto-detect) or 1 (force on), 0 (force off) or 2 (force XInput)
  60. ; EXPERIMENTAL - behaviour is far from optimal.
  61. ; Emulates a joystick using keyboard and mouse.
  62. ; For auto-detect only enabled if no joystick is detected.
  63. ; It is not possible to use a joystick that is plugged in after start.
  64. ; Force off to get back the dialog boxes asking you to plug in the joystick.
  65. ; Force XInput to use a special XInput mode that is adjusted to what worked
  66. ; best for my experiments with a Steam controller, so it might not be useful
  67. ; for anyone else.
  68. JoystickEmul = -1
  69.  
  70. ; InvertYAxis = 0 (default)
  71. ; Set to 1 to swap up/down for joystick/controller/mouse control
  72. InvertYAxis = 0
  73.  
  74. ; MouseSensitivity = 0.5 (default)
  75. ; How sensitive the mouse is if joystick emulation is enabled.
  76. ; Maximum turn speed might only be possible for values >= 1.1
  77. MouseSensitivity = 0.5
  78.  
  79. ; KbdSensitivity = 1.0 (default)
  80. ; How sensitive the keyboard is if joystick emulation is enabled.
  81. ; Maximum turn speed for 1.0, values above are not useful.
  82. KbdSensitivity = 1.0
  83.  
  84. ; ProcessAffinity = -1 (default), 0 (do not change) or mask
  85. ; Sets which processors to allow running on
  86. ; When set to -1 (or < 0 in general) tries to auto-detect (currently picks second processor)
  87. ; When set to 0 does not change affinity
  88. ; Any other value is interpreted as a processor mask
  89. ProcessAffinity = -1
  90.  
  91. ; AutoPatch = 2 (default, enabled), 1 (minimum necessary for correct operation), 0 (disabled)
  92. ; Sets whether to automatically apply necessary patches to binaries.
  93. ; Note this will only work if you did NOT RENAME the game binaries!
  94. ; Might work unreliable with versions with additional DRM (e.g. Steam).
  95. ; Current level 1 fixes: TIE95/XWING96: Force software cursor
  96. ; Current level 2 fixes: TIE95: Fix ISD lasers not firing
  97. AutoPatch = 2
  98.  
  99. ; RefreshLimit = 1 (default, enabled), 0 (disabled), 2 (old method used up to v1.49)
  100. ; If disabled, causes constant 100% CPU load and movies might play too fast.
  101. ; If set to 1, emulates a screen refresh rate of 24 Hz which is what the
  102. ; game normally expects/works best with. The method used might not be supported
  103. ; by all graphics drivers, causing it to behave as if disabled.
  104. ; If set to 2, the method from older versions is used. This has massive
  105. ; compatiblity issues at least with Intel GPUs and multisampling enabled,
  106. ; and there might be issues with other drivers as well.
  107. RefreshLimit = 1
  108.  
  109. ; PresentSleepTime = value in milliseconds (off by default)
  110. ; Set to sleep after drawing a frame.
  111. ; This is a generic but not very good method
  112. ; to reduce CPU usage for games that otherwise
  113. ; waste all CPU for no effect.
  114. ; Disabled by default as it can affect game performance
  115. ; negatively, remove ; and change value to your liking
  116. ; to enable.
  117. ;PresentSleepTime = 10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement