Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.00 KB | None | 0 0
  1. ## Skeleton config file for RetroArch
  2.  
  3. # Save all save files (*.srm) to this directory. This includes related files like .bsv, .rtc, .psrm, etc ...
  4. # This will be overridden by explicit command line options.
  5. # savefile_directory =
  6.  
  7. # Save all save states (*.state) to this directory.
  8. # This will be overridden by explicit command line options.
  9. # savestate_directory =
  10.  
  11. # If set to a directory, Content which is temporarily extracted
  12. # will be extracted to this directory.
  13. # extraction_directory =
  14.  
  15. # Automatically saves a savestate at the end of RetroArch's lifetime.
  16. # The path is $SRAM_PATH.auto.
  17. # RetroArch will automatically load any savestate with this path on startup if savestate_auto_load is set.
  18. # savestate_auto_save = false
  19. # savestate_auto_load = true
  20.  
  21. # Load libretro from a dynamic location for dynamically built RetroArch.
  22. # This option is mandatory.
  23.  
  24. # Path to a libretro implementation.
  25. # libretro_path = "/path/to/libretro.so"
  26.  
  27. # A directory for where to search for libretro core implementations.
  28. # libretro_directory =
  29.  
  30. # Sets log level for libretro cores (GET_LOG_INTERFACE).
  31. # If a log level issued by a libretro core is below libretro_log_level, it is ignored.
  32. # DEBUG logs are always ignored unless verbose mode is activated (--verbose).
  33. # DEBUG = 0, INFO = 1, WARN = 2, ERROR = 3.
  34. # libretro_log_level = 0
  35.  
  36. # Enable or disable verbosity level of frontend.
  37. # log_verbosity = false
  38.  
  39. # Enable or disable RetroArch performance counters
  40. # perfcnt_enable = false
  41.  
  42. # Path to core options config file.
  43. # This config file is used to expose core-specific options.
  44. # It will be written to by RetroArch.
  45. # A default path will be assigned if not set.
  46. core_options_path = /opt/retropie/configs/all/retroarch-core-options.cfg
  47.  
  48. # Path to content load history file.
  49. # RetroArch keeps track of all content loaded in the menu and from CLI directly for convenient quick loading.
  50. # A default path will be assigned if not set.
  51. # game_history_path =
  52.  
  53. # Number of entries that will be kept in content history file.
  54. # game_history_size = 100
  55.  
  56. # Sets the "system" directory.
  57. # Implementations can query for this directory to load BIOSes, system-specific configs, etc.
  58. system_directory = /home/pi/RetroPie/roms/../BIOS
  59.  
  60. # Sets start directory for menu content browser.
  61. # rgui_browser_directory =
  62.  
  63. # Content directory. Interacts with RETRO_ENVIRONMENT_GET_CONTENT_DIRECTORY.
  64. # Usually set by developers who bundle libretro/RetroArch apps to point to assets.
  65. # content_directory =
  66.  
  67. # Assets directory. This location is queried by default when menu interfaces try to look for
  68. # loadable assets, etc.
  69. # assets_directory =
  70.  
  71. # Sets start directory for menu config browser.
  72. # rgui_config_directory =
  73.  
  74. # Show startup screen in menu.
  75. # Is automatically set to false when seen for the first time.
  76. # This is only updated in config if config_save_on_exit is set to true, however.
  77. # rgui_show_start_screen = true
  78.  
  79. # Flushes config to disk on exit. Useful for menu as settings can be modified.
  80. # Overwrites the config. #include's and comments are not preserved.
  81. config_save_on_exit = false
  82.  
  83. # Load up a specific config file based on the core being used.
  84. # core_specific_config = false
  85.  
  86. #### Video
  87.  
  88. # Video driver to use. "gl", "xvideo", "sdl"
  89. # video_driver = "gl"
  90.  
  91. # Which OpenGL context implementation to use.
  92. # Possible ones for desktop are: glx, x-egl, kms-egl, sdl-gl, wgl.
  93. # By default, tries to use first suitable driver.
  94. # video_gl_context =
  95.  
  96. # Windowed xscale and yscale
  97. # (Real x res: base_size * xscale * aspect_ratio, real y res: base_size * yscale)
  98. # video_xscale = 3.0
  99. # video_yscale = 3.0
  100.  
  101. # Fullscreen resolution. Resolution of 0 uses the resolution of the desktop.
  102. # video_fullscreen_x = 0
  103. # video_fullscreen_y = 0
  104.  
  105. # Start in fullscreen. Can be changed at runtime.
  106. # video_fullscreen = false
  107.  
  108. # If fullscreen, prefer using a windowed fullscreen mode.
  109. # video_windowed_fullscreen = true
  110.  
  111. # Which monitor to prefer. 0 (default) means no particular monitor is preferred, 1 and up (1 being first monitor),
  112. # suggests RetroArch to use that particular monitor.
  113. # video_monitor_index = 0
  114.  
  115. # Forcibly disable composition. Only works in Windows Vista/7 for now.
  116. # video_disable_composition = false
  117.  
  118. # Video vsync.
  119. # video_vsync = true
  120.  
  121. # Attempts to hard-synchronize CPU and GPU. Can reduce latency at cost of performance.
  122. # video_hard_sync = false
  123.  
  124. # Sets how many frames CPU can run ahead of GPU when using video_hard_sync.
  125. # Maximum is 3.
  126. # video_hard_sync_frames = 0
  127.  
  128. # Inserts a black frame inbetween frames.
  129. # Useful for 120 Hz monitors who want to play 60 Hz material with eliminated ghosting.
  130. # video_refresh_rate should still be configured as if it is a 60 Hz monitor (divide refresh rate by 2).
  131. # video_black_frame_insertion = false
  132.  
  133. # Use threaded video driver. Using this might improve performance at possible cost of latency and more video stuttering.
  134. video_threaded = true
  135.  
  136. # Use a shared context for HW rendered libretro cores.
  137. # Avoids having to assume GL state changes inbetween frames.
  138. # video_shared_context = false
  139.  
  140. # Smoothens picture with bilinear filtering. Should be disabled if using pixel shaders.
  141. video_smooth = false
  142.  
  143. # Forces rendering area to stay equal to content aspect ratio or as defined in video_aspect_ratio.
  144. # video_force_aspect = true
  145.  
  146. # Only scales video in integer steps.
  147. # The base size depends on system-reported geometry and aspect ratio.
  148. # If video_force_aspect is not set, X/Y will be integer scaled independently.
  149. # video_scale_integer = false
  150.  
  151. # A floating point value for video aspect ratio (width / height).
  152. # If this is not set, aspect ratio is assumed to be automatic.
  153. # Behavior then is defined by video_aspect_ratio_auto.
  154. video_aspect_ratio = 1.33
  155.  
  156. # If this is true and video_aspect_ratio is not set,
  157. # aspect ratio is decided by libretro implementation.
  158. # If this is false, 1:1 PAR will always be assumed if video_aspect_ratio is not set.
  159. # video_aspect_ratio_auto = false
  160.  
  161. # Forces cropping of overscanned frames.
  162. # Exact behavior of this option is implementation specific.
  163. # video_crop_overscan = true
  164.  
  165. # Path to shader. Shader can be either Cg, CGP (Cg preset) or GLSL, GLSLP (GLSL preset)
  166. # video_shader = "/path/to/shader.{cg,cgp,glsl,glslp}"
  167. video_shader = "/opt/retropie/emulators/RetroArch/shader/snes_phosphor.glslp"
  168.  
  169.  
  170. # Load video_shader on startup.
  171. # Other shaders can still be loaded later in runtime.
  172. # video_shader_enable = false
  173. video_shader_enable = true
  174.  
  175. # Defines a directory where shaders (Cg, CGP, GLSL) are kept for easy access.
  176. video_shader_dir = /opt/retropie/emulators/RetroArch/shader/
  177.  
  178. # CPU-based video filter. Path to a dynamic library.
  179. # video_filter =
  180.  
  181. # Path to a font used for rendering messages. This path must be defined to enable fonts.
  182. # Do note that the _full_ path of the font is necessary!
  183. # video_font_path =
  184.  
  185. # Size of the font rendered.
  186. # video_font_size = 32
  187.  
  188. # Enable usage of OSD messages.
  189. # video_font_enable = true
  190.  
  191. # Offset for where messages will be placed on screen. Values are in range 0.0 to 1.0 for both x and y values.
  192. # [0.0, 0.0] maps to the lower left corner of the screen.
  193. # video_message_pos_x = 0.05
  194. # video_message_pos_y = 0.05
  195.  
  196. # Color for message. The value is treated as a hexadecimal value.
  197. # It is a regular RGB hex number, i.e. red is "ff0000".
  198. # video_message_color = ffffff
  199.  
  200. # Video refresh rate of your monitor.
  201. # Used to calculate a suitable audio input rate.
  202. # video_refresh_rate = 59.95
  203.  
  204. # Allows libretro cores to set rotation modes.
  205. # Setting this to false will honor, but ignore this request.
  206. # This is useful for vertically oriented content where one manually rotates the monitor.
  207. # video_allow_rotate = true
  208.  
  209. # Forces a certain rotation of the screen.
  210. # The rotation is added to rotations which the libretro core sets (see video_allow_rotate).
  211. # The angle is <value> * 90 degrees counter-clockwise.
  212. # video_rotation = 0
  213.  
  214. #### Audio
  215.  
  216. # Enable audio.
  217. # audio_enable = true
  218.  
  219. # Audio output samplerate.
  220. audio_out_rate = 22000
  221.  
  222. # Audio resampler backend. Which audio resampler to use.
  223. # Default will use "sinc".
  224. # audio_resampler =
  225.  
  226. # Audio driver backend. Depending on configuration possible candidates are: alsa, pulse, oss, jack, rsound, roar, openal, sdl, xaudio.
  227. # audio_driver =
  228.  
  229. # Override the default audio device the audio_driver uses. This is driver dependant. E.g. ALSA wants a PCM device, OSS wants a path (e.g. /dev/dsp), Jack wants portnames (e.g. system:playback1,system:playback_2), and so on ...
  230. # audio_device =
  231.  
  232. # Audio DSP plugin that processes audio before it's sent to the driver. Path to a dynamic library.
  233. # audio_dsp_plugin =
  234.  
  235. # Will sync (block) on audio. Recommended.
  236. # audio_sync = true
  237.  
  238. # Desired audio latency in milliseconds. Might not be honored if driver can't provide given latency.
  239. # audio_latency = 64
  240.  
  241. # Enable audio rate control.
  242. # audio_rate_control = true
  243.  
  244. # Controls audio rate control delta. Defines how much input rate can be adjusted dynamically.
  245. # Input rate = in_rate * (1.0 +/- audio_rate_control_delta)
  246. # audio_rate_control_delta = 0.005
  247.  
  248. # Audio volume. Volume is expressed in dB.
  249. # 0 dB is normal volume. No gain will be applied.
  250. # Gain can be controlled in runtime with input_volume_up/input_volume_down.
  251. # audio_volume = 0.0
  252.  
  253. #### Overlay
  254.  
  255. # Enable overlay.
  256. # input_overlay_enable = false
  257.  
  258. # Path to input overlay
  259. # input_overlay =
  260.  
  261. # Overlay opacity
  262. # input_overlay_opacity = 1.0
  263.  
  264. # Overlay scale
  265. # input_overlay_scale = 1.0
  266.  
  267. #### Input
  268.  
  269. # Input driver. Depending on video driver, it might force a different input driver.
  270. # input_driver = sdl
  271.  
  272. # Joypad driver. (Valid: linuxraw, sdl, dinput)
  273. # input_joypad_driver =
  274.  
  275. # Keyboard layout for input driver if applicable (udev/evdev for now).
  276. # Syntax is either just layout (e.g. "no"), or a layout and variant separated with colon ("no:nodeadkeys").
  277. # input_keyboard_layout =
  278.  
  279. # Defines axis threshold. Possible values are [0.0, 1.0]
  280. # input_axis_threshold = 0.5
  281.  
  282. # Enable input auto-detection. Will attempt to autoconfigure
  283. # joypads, Plug-and-Play style.
  284. input_autodetect_enable = true
  285.  
  286. # Directory for joypad autoconfigs (PC).
  287. # If a joypad is plugged in, that joypad will be autoconfigured if a config file
  288. # corresponding to that joypad is present in joypad_autoconfig_dir.
  289. # Input binds which are made explicit (input_playerN_*_btn/axis) will take priority over autoconfigs.
  290. # Autoconfigs can be created with retroarch-joyconfig, manually, or with a frontend.
  291. # Requires input_autodetect_enable to be enabled.
  292. joypad_autoconfig_dir = /opt/retropie/emulators/RetroArch/configs/
  293.  
  294. # Enable debug input key reporting on-screen.
  295. # input_debug_enable = false
  296.  
  297. # Sets which libretro device is used for a player.
  298. # Devices are indentified with a number.
  299. # This is normally saved by the menu.
  300. # Device IDs are found in libretro.h.
  301. # These settings are overridden by explicit command-line arguments which refer to input devices.
  302. # None: 0
  303. # Joypad (RetroPad): 1
  304. # Mouse: 2
  305. # Keyboard: 3
  306. # Generic Lightgun: 4
  307. # Joypad w/ Analog (RetroPad + Analog sticks): 5
  308. # Multitap (SNES specific): 257
  309. # Super Scope (SNES specific): 260
  310. # Justifier (SNES specific): 516
  311. # Justifiers (SNES specific): 772
  312.  
  313. # input_libretro_device_p1 =
  314. # input_libretro_device_p2 =
  315. # input_libretro_device_p3 =
  316. # input_libretro_device_p4 =
  317. # input_libretro_device_p5 =
  318. # input_libretro_device_p6 =
  319. # input_libretro_device_p7 =
  320. # input_libretro_device_p8 =
  321.  
  322. # Keyboard input. Will recognize letters ("a" to "z") and the following special keys (where "kp_"
  323. # is for keypad keys):
  324. #
  325. # left, right, up, down, enter, kp_enter, tab, insert, del, end, home,
  326. # rshift, shift, ctrl, alt, space, escape, add, subtract, kp_plus, kp_minus,
  327. # f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12,
  328. # num0, num1, num2, num3, num4, num5, num6, num7, num8, num9, pageup, pagedown,
  329. # keypad0, keypad1, keypad2, keypad3, keypad4, keypad5, keypad6, keypad7, keypad8, keypad9,
  330. # period, capslock, numlock, backspace, multiply, divide, print_screen, scroll_lock,
  331. # tilde, backquote, pause, quote, comma, minus, slash, semicolon, equals, leftbracket,
  332. # backslash, rightbracket, kp_period, kp_equals, rctrl, ralt
  333. #
  334. # Keyboard input, Joypad and Joyaxis will all obey the "nul" bind, which disables the bind completely,
  335. # rather than relying on a default.
  336. input_player1_a = x
  337. input_player1_b = z
  338. input_player1_y = a
  339. input_player1_x = s
  340. input_player1_start = enter
  341. input_player1_select = rshift
  342. input_player1_l = q
  343. input_player1_r = w
  344. input_player1_left = left
  345. input_player1_right = right
  346. input_player1_up = up
  347. input_player1_down = down
  348. # input_player1_l2 =
  349. # input_player1_r2 =
  350. # input_player1_l3 =
  351. # input_player1_r3 =
  352.  
  353. # Two analog sticks (DualShock-esque).
  354. # Bound as usual, however, if a real analog axis is bound,
  355. # it can be read as a true analog.
  356. # Positive X axis is right, Positive Y axis is down.
  357. # input_player1_l_x_plus =
  358. # input_player1_l_x_minus =
  359. # input_player1_l_y_plus =
  360. # input_player1_l_y_minus =
  361. # input_player1_r_x_plus =
  362. # input_player1_r_x_minus =
  363. # input_player1_r_y_plus =
  364. # input_player1_r_y_minus =
  365.  
  366. # If desired, it is possible to override which joypads are being used for player 1 through 8.
  367. # First joypad available is 0.
  368. # input_player1_joypad_index = 0
  369. # input_player2_joypad_index = 1
  370. # input_player3_joypad_index = 2
  371. # input_player4_joypad_index = 3
  372. # input_player5_joypad_index = 4
  373. # input_player6_joypad_index = 5
  374. # input_player7_joypad_index = 6
  375. # input_player8_joypad_index = 7
  376.  
  377. # Joypad buttons.
  378. # Figure these out by using RetroArch-Phoenix or retroarch-joyconfig.
  379. # You can use joypad hats with hnxx, where n is the hat, and xx is a string representing direction.
  380. # E.g. "h0up"
  381. # input_player1_a_btn =
  382. # input_player1_b_btn =
  383. # input_player1_y_btn =
  384. # input_player1_x_btn =
  385. # input_player1_start_btn =
  386. # input_player1_select_btn =
  387. # input_player1_l_btn =
  388. # input_player1_r_btn =
  389. # input_player1_left_btn =
  390. # input_player1_right_btn =
  391. # input_player1_up_btn =
  392. # input_player1_down_btn =
  393. # input_player1_l2_btn =
  394. # input_player1_r2_btn =
  395. # input_player1_l3_btn =
  396. # input_player1_r3_btn =
  397.  
  398. input_player1_joypad_index = "0"
  399. input_player1_b_btn = "2"
  400. input_player1_y_btn = "3"
  401. input_player1_select_btn = "8"
  402. input_player1_start_btn = "9"
  403. input_player1_up_axis = "-1"
  404. input_player1_down_axis = "+1"
  405. input_player1_left_axis = "-0"
  406. input_player1_right_axis = "+0"
  407. input_player1_a_btn = "1"
  408. input_player1_x_btn = "0"
  409. input_player1_l_btn = "4"
  410. input_player1_r_btn = "5"
  411.  
  412. input_player1_joypad_index = "1"
  413. input_player1_b_btn = "2"
  414. input_player1_y_btn = "3"
  415. input_player1_select_btn = "8"
  416. input_player1_start_btn = "9"
  417. input_player1_up_axis = "-1"
  418. input_player1_down_axis = "+1"
  419. input_player1_left_axis = "-0"
  420. input_player1_right_axis = "+0"
  421. input_player1_a_btn = "1"
  422. input_player1_x_btn = "0"
  423. input_player1_l_btn = "4"
  424. input_player1_r_btn = "5"
  425.  
  426. input_enable_hotkey_btn = "8"
  427. input_exit_emulator_btn = "9"
  428.  
  429. input_save_state_btn = "5"
  430. input_load_state_btn = "4"
  431.  
  432. # Axis for RetroArch D-Pad.
  433. # Needs to be either '+' or '-' in the first character signaling either positive or negative direction of the axis, then the axis number.
  434. # Do note that every other input option has the corresponding _btn and _axis binds as well; they are omitted here for clarity.
  435. # input_player1_left_axis =
  436. # input_player1_right_axis =
  437. # input_player1_up_axis =
  438. # input_player1_down_axis =
  439.  
  440. # Holding the turbo while pressing another button will let the button enter a turbo mode
  441. # where the button state is modulated with a periodic signal.
  442. # The modulation stops when the button itself (not turbo button) is released.
  443. # input_player1_turbo =
  444.  
  445. # Describes the period and how long of that period a turbo-enabled button should behave.
  446. # Numbers are described in frames.
  447. # input_turbo_period = 6
  448. # input_turbo_duty_cycle = 3
  449.  
  450. # This goes all the way to player 8 (*_player2_*, *_player3_*, etc), but omitted for clarity.
  451. # All input binds have corresponding binds for keyboard (none), joykeys (_btn) and joyaxes (_axis) as well.
  452.  
  453. # Toggles fullscreen.
  454. # input_toggle_fullscreen = f
  455.  
  456. # Saves state.
  457. # input_save_state = f2
  458. # Loads state.
  459. # input_load_state = f4
  460.  
  461. # State slots. With slot set to 0, save state name is *.state (or whatever defined on commandline).
  462. # When slot is != 0, path will be $path%d, where %d is slot number.
  463. # input_state_slot_increase = f7
  464. # input_state_slot_decrease = f6
  465.  
  466. # Toggles between fast-forwarding and normal speed.
  467. # input_toggle_fast_forward = space
  468.  
  469. # Hold for fast-forward. Releasing button disables fast-forward.
  470. # input_hold_fast_forward = l
  471.  
  472. # Key to exit RetroArch cleanly.
  473. # Killing it in any hard way (SIGKILL, etc) will terminate RetroArch without saving RAM, etc.
  474. # On Unix-likes, SIGINT/SIGTERM allows a clean deinitialization.
  475. input_exit_emulator = escape
  476.  
  477. # Applies next and previous shader in directory.
  478. input_shader_next = m
  479. input_shader_prev = n
  480.  
  481. # Hold button down to rewind. Rewinding must be enabled.
  482. input_rewind = r
  483.  
  484. # Toggle between recording and not.
  485. # input_movie_record_toggle = o
  486.  
  487. # Toggle between paused and non-paused state
  488. # input_pause_toggle = p
  489.  
  490. # Frame advance when content is paused
  491. # input_frame_advance = k
  492.  
  493. # Reset the content.
  494. # input_reset = h
  495.  
  496. # Cheats.
  497. # input_cheat_index_plus = y
  498. # input_cheat_index_minus = t
  499. # input_cheat_toggle = u
  500.  
  501. # Mute/unmute audio
  502. # input_audio_mute = f9
  503.  
  504. # Take screenshot
  505. # input_screenshot = f8
  506.  
  507. # Netplay flip players.
  508. # input_netplay_flip_players = i
  509.  
  510. # Hold for slowmotion.
  511. # input_slowmotion = e
  512.  
  513. # Enable other hotkeys.
  514. # If this hotkey is bound to either keyboard, joybutton or joyaxis,
  515. # all other hotkeys will be disabled unless this hotkey is also held at the same time.
  516. # This is useful for RETRO_KEYBOARD centric implementations
  517. # which query a large area of the keyboard, where it is not desirable
  518. # that hotkeys get in the way.
  519.  
  520. # Alternatively, all hotkeys for keyboard could be disabled by the user.
  521. input_enable_hotkey = escape
  522.  
  523. # Increases audio volume.
  524. # input_volume_up = kp_plus
  525. # Decreases audio volume.
  526. # input_volume_down = kp_minus
  527.  
  528. # Toggles to next overlay. Wraps around.
  529. # input_overlay_next =
  530.  
  531. # Toggles eject for disks. Used for multiple-disk content.
  532. # input_disk_eject_toggle =
  533.  
  534. # Cycles through disk images. Use after ejecting.
  535. # Complete by toggling eject again.
  536. # input_disk_next =
  537.  
  538. # Toggles menu.
  539. # input_menu_toggle = f1
  540.  
  541. # Toggles mouse grab. When mouse is grabbed, RetroArch hides the mouse,
  542. # and keeps the mouse pointer inside the window to allow relative mouse input
  543. # to work better.
  544. # input_grab_mouse_toggle = f11
  545.  
  546. #### Menu
  547.  
  548. # Menu driver to use. "rgui", "lakka", etc.
  549. # menu_driver = "rgui"
  550.  
  551. #### Camera
  552.  
  553. # Override the default camera device the camera driver uses. This is driver dependant.
  554. # camera_device =
  555.  
  556. # Override the default privacy permission for cores that want to access camera services. Is "false" by default.
  557. # camera_allow = false
  558.  
  559. #### Location
  560.  
  561. # Override the default privacy permission for cores that want to access location services. Is "false" by default.
  562. # location_allow = false
  563.  
  564. #### Netplay
  565.  
  566. # When being client over netplay, use keybinds for player 1.
  567. # netplay_client_swap_input = false
  568.  
  569. # The nickname being used for playing online.
  570. # netplay_nickname =
  571.  
  572. # The amount of delay frames to use for netplay. Increasing this value will increase
  573. # performance, but introduce more latency.
  574. # netplay_delay_frames = 0
  575.  
  576. # Netplay mode for the current user.
  577. # false is Server, true is Client.
  578. # netplay_mode = false
  579.  
  580. # Enable or disable spectator mode for the player during netplay.
  581. # netplay_spectator_mode_enable = false
  582.  
  583. # The IP Address of the host to connect to.
  584. # netplay_ip_address =
  585.  
  586. # The port of the host IP Address. Can be either a TCP or an UDP port.
  587. # netplay_ip_port = 55435
  588.  
  589. #### Misc
  590.  
  591. # Enable rewinding. This will take a performance hit when playing, so it is disabled by default.
  592. rewind_enable = false
  593.  
  594. # Rewinding buffer size in megabytes. Bigger rewinding buffer means you can rewind longer.
  595. # The buffer should be approx. 20MB per minute of buffer time.
  596. rewind_buffer_size = 10
  597.  
  598. # Rewind granularity. When rewinding defined number of frames, you can rewind several frames at a time, increasing the rewinding speed.
  599. rewind_granularity = 2
  600.  
  601. # Pause gameplay when window focus is lost.
  602. # pause_nonactive = true
  603.  
  604. # Autosaves the non-volatile SRAM at a regular interval. This is disabled by default unless set otherwise.
  605. # The interval is measured in seconds. A value of 0 disables autosave.
  606. # autosave_interval =
  607.  
  608. # Path to XML cheat database (as used by bSNES).
  609. # cheat_database_path =
  610.  
  611. # Path to XML cheat config, a file which keeps track of which
  612. # cheat settings are used for individual games.
  613. # If the file does not exist, it will be created.
  614. # cheat_settings_path =
  615.  
  616. # Directory to dump screenshots to.
  617. # screenshot_directory =
  618.  
  619. # Records video after CPU video filter.
  620. # video_post_filter_record = false
  621.  
  622. # Records output of GPU shaded material if available.
  623. # video_gpu_record = false
  624.  
  625. # Screenshots output of GPU shaded material if available.
  626. video_gpu_screenshot = true
  627.  
  628. # Block SRAM from being overwritten when loading save states.
  629. # Might potentially lead to buggy games.
  630. # block_sram_overwrite = false
  631.  
  632. # When saving a savestate, save state index is automatically increased before
  633. # it is saved.
  634. # Also, when loading content, the index will be set to the highest existing index.
  635. # There is no upper bound on the index.
  636. # savestate_auto_index = false
  637.  
  638. # Slowmotion ratio. When slowmotion, content will slow down by factor.
  639. # slowmotion_ratio = 3.0
  640.  
  641. # The maximum rate at which content will be run when using fast forward. (E.g. 5.0 for 60 fps content => 300 fps cap).
  642. # RetroArch will go to sleep to ensure that the maximum rate will not be exceeded.
  643. # Do not rely on this cap to be perfectly accurate.
  644. # A negative ratio equals no FPS cap.
  645. # fastforward_ratio = -1.0
  646.  
  647. # Enable stdin/network command interface.
  648. # network_cmd_enable = false
  649. # network_cmd_port = 55355
  650. # stdin_cmd_enable = false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement