Guest User

Untitled

a guest
May 16th, 2018
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.57 KB | None | 0 0
  1. [sdl]
  2. # fullscreen -- Start dosbox directly in fullscreen.
  3. # fulldouble -- Use double buffering in fullscreen.
  4. # fullresolution -- What resolution to use for fullscreen: original or fixed size (e.g. 1024x768).
  5. # windowresolution -- Scale the window to this size IF the output device supports hardware scaling.
  6. # output -- What to use for output: surface,overlay,opengl,openglnb,ddraw.
  7. # autolock -- Mouse will automatically lock, if you click on the screen.
  8. # sensitiviy -- Mouse sensitivity.
  9. # waitonerror -- Wait before closing the console if dosbox has an error.
  10. # priority -- Priority levels for dosbox: lowest,lower,normal,higher,highest,pause (when not focussed).
  11. # Second entry behind the comma is for when dosbox is not focused/minimized.
  12. # mapperfile -- File used to load/save the key/event mappings from.
  13. # usescancodes -- Avoid usage of symkeys, might not work on all operating systems.
  14.  
  15. fullscreen=false
  16. fulldouble=false
  17. fullresolution=original
  18. windowresolution=1980x1000
  19. output=opengl
  20. autolock=true
  21. sensitivity=60
  22. waitonerror=true
  23. priority=higher,normal
  24. mapperfile=mapper.txt
  25. usescancodes=true
  26.  
  27. [dosbox]
  28. # language -- Select another language file.
  29. # memsize -- Amount of memory dosbox has in megabytes.
  30. # machine -- The type of machine tries to emulate:hercules,cga,tandy,pcjr,vga.
  31. # captures -- Directory where things like wave,midi,screenshot get captured.
  32.  
  33. language=
  34. machine=vga
  35. captures=capture
  36. memsize=64
  37.  
  38. [render]
  39. # frameskip -- How many frames dosbox skips before drawing one.
  40. # aspect -- Do aspect correction, if your output method doesn't support scaling this can slow things down!.
  41. # scaler -- Scaler used to enlarge/enhance low resolution modes.
  42. # Supported are none,normal2x,normal3x,advmame2x,advmame3x,hq2x,hq3x,
  43. # 2xsai,super2xsai,supereagle,advinterp2x,advinterp3x,
  44. # tv2x,tv3x,rgb2x,rgb3x,scan2x,scan3x.
  45.  
  46. frameskip=0
  47. aspect=false
  48. scaler=normal2x
  49.  
  50. [cpu]
  51. # core -- CPU Core used in emulation: normal,simple,dynamic,auto.
  52. # auto switches from normal to dynamic if appropriate.
  53. # cycles -- Amount of instructions dosbox tries to emulate each millisecond.
  54. # Setting this value too high results in sound dropouts and lags.
  55. # You can also let DOSBox guess the correct value by setting it to max.
  56. # The default setting (auto) switches to max if appropriate.
  57. # cycleup -- Amount of cycles to increase/decrease with keycombo.
  58. # cycledown Setting it lower than 100 will be a percentage.
  59.  
  60. core=auto
  61. cycles=18000
  62. cycleup=500
  63. cycledown=20
Add Comment
Please, Sign In to add comment