Guest User

Retropie Steam Controller as Xbox 360 Retroarch config

a guest
Dec 9th, 2018
2,397
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 29.05 KB | None | 0 0
  1. pi@retropie:/opt/retropie/configs/all $ cat retroarch.cfg
  2. ## Skeleton config file for RetroArch
  3.  
  4. # Save all save files (*.srm) to this directory. This includes related files like .bsv, .rtc, .psrm, etc ...
  5. # This will be overridden by explicit command line options.
  6. # savefile_directory =
  7.  
  8. # Save all save states (*.state) to this directory.
  9. # This will be overridden by explicit command line options.
  10. # savestate_directory =
  11.  
  12. # If set to a directory, content which is temporarily extracted
  13. # will be extracted to this directory.
  14. cache_directory = "/tmp/retroarch"
  15.  
  16. # Save all downloaded files to this directory.
  17. # core_assets_directory =
  18.  
  19. # Save all remapped controls to this directory.
  20. # input_remapping_directory =
  21.  
  22. # Save all playlists/collections to this directory.
  23. # playlist_directory =
  24.  
  25. # If set to a directory, the content history playlist will be saved
  26. # to this directory.
  27. # content_history_dir =
  28.  
  29. # Saved queries are stored to this directory.
  30. # cursor_directory =
  31.  
  32. # Automatically saves a savestate at the end of RetroArch's lifetime.
  33. # The path is $SRAM_PATH.auto.
  34. # RetroArch will automatically load any savestate with this path on startup if savestate_auto_load is set.
  35. # savestate_auto_save = false
  36. # savestate_auto_load = true
  37.  
  38. # Load libretro from a dynamic location for dynamically built RetroArch.
  39. # This option is mandatory.
  40.  
  41. # Path to a libretro implementation.
  42. # libretro_path = "/path/to/libretro.so"
  43.  
  44. # A directory for where to search for libretro core implementations.
  45. # libretro_directory =
  46.  
  47. # A directory for where to search for libretro core information.
  48. # libretro_info_path =
  49.  
  50. # Sets log level for libretro cores (GET_LOG_INTERFACE).
  51. # If a log level issued by a libretro core is below libretro_log_level, it is ignored.
  52. # DEBUG logs are always ignored unless verbose mode is activated (--verbose).
  53. # DEBUG = 0, INFO = 1, WARN = 2, ERROR = 3.
  54. # libretro_log_level = 0
  55.  
  56. # Enable or disable verbosity level of frontend.
  57. # log_verbosity = false
  58.  
  59. # If this option is enabled, every content file loaded in RetroArch will be
  60. # automatically added to a history list.
  61. # history_list_enable = true
  62.  
  63. # Enable performance counters
  64. # perfcnt_enable = false
  65.  
  66. # Path to core options config file.
  67. # This config file is used to expose core-specific options.
  68. # It will be written to by RetroArch.
  69. # A default path will be assigned if not set.
  70. core_options_path = "/opt/retropie/configs/all/retroarch-core-options.cfg"
  71.  
  72. # Path to content history file.
  73. # RetroArch keeps track of all content loaded in the menu and from CLI directly for convenient quick loading.
  74. # A default path will be assigned if not set.
  75. # content_history_path =
  76.  
  77. # Path to music content history file (optional).
  78. # RetroArch keeps track of all music content loaded in the menu and from CLI directly for convenient quick loading.
  79. # A default path will be assigned if not set.
  80. # content_music_history_path =
  81.  
  82. # Path to image content history file (optional).
  83. # RetroArch keeps track of all image content loaded in the menu and from CLI directly for convenient quick loading.
  84. # A default path will be assigned if not set.
  85. # content_image_history_path =
  86.  
  87. # Path to video content history file (optional).
  88. # RetroArch keeps track of all video content loaded in the menu and from CLI directly for convenient quick loading.
  89. # A default path will be assigned if not set.
  90. # content_video_history_path =
  91.  
  92. # Number of entries that will be kept in content history file.
  93. # content_history_size = 100
  94.  
  95. # Sets the "system" directory.
  96. # Implementations can query for this directory to load BIOSes, system-specific configs, etc.
  97. system_directory = "/home/pi/RetroPie/BIOS"
  98.  
  99. # Sets start directory for menu file browser.
  100. # rgui_browser_directory =
  101.  
  102. # Content directory. Interacts with RETRO_ENVIRONMENT_GET_CONTENT_DIRECTORY.
  103. # Usually set by developers who bundle libretro/RetroArch apps to point to assets.
  104. # content_directory =
  105.  
  106. # Assets directory. This location is queried by default when menu interfaces try to look for
  107. # loadable assets, etc.
  108. # assets_directory =
  109.  
  110. # Dynamic wallpapers directory. The place to store the wallpapers dynamically
  111. # loaded by the menu depending on context.
  112. # dynamic_wallpapers_directory =
  113.  
  114. # Thumbnails directory. To store thumbnail files.
  115. # thumbnails_directory =
  116.  
  117. # Sets start directory for menu config browser.
  118. # rgui_config_directory =
  119.  
  120. # Show startup screen in menu.
  121. # Is automatically set to false when seen for the first time.
  122. # This is only updated in config if config_save_on_exit is set to true, however.
  123. # rgui_show_start_screen = true
  124.  
  125. # Flushes config to disk on exit. Useful for menu as settings can be modified.
  126. # Overwrites the config. #include's and comments are not preserved.
  127. config_save_on_exit = "false"
  128.  
  129. # Shows hidden files and folders in directory listings.
  130. # show_hidden_files = false
  131.  
  132. #### Video
  133.  
  134. # Video driver to use. "gl", "xvideo", "sdl", "d3d"
  135. # video_driver = "gl"
  136.  
  137. # Which context implementation to use.
  138. # Possible ones for desktop are: glx, x-egl, kms-egl, sdl-gl, wgl.
  139. # By default, tries to use first suitable driver.
  140. # video_context_driver =
  141.  
  142. # Windowed x resolution scale and y resolution scale
  143. # (Real x res: base_size * xscale * aspect_ratio, real y res: base_size * yscale)
  144. # video_scale = 3.0
  145.  
  146. # Fullscreen resolution. Resolution of 0 uses the resolution of the desktop.
  147. # video_fullscreen_x = 0
  148. # video_fullscreen_y = 0
  149.  
  150. # Start in fullscreen. Can be changed at runtime.
  151. # video_fullscreen = false
  152.  
  153. # If fullscreen, prefer using a windowed fullscreen mode.
  154. # video_windowed_fullscreen = true
  155.  
  156. # Percentage of opacity to use for the window (100 is completely opaque).
  157. # video_window_opacity = 100
  158.  
  159. # Whether to enable the default window decorations like border, titlebar etc.
  160. # video_window_show_decorations = true
  161.  
  162. # Which monitor to prefer. 0 (default) means no particular monitor is preferred, 1 and up (1 being first monitor),
  163. # suggests RetroArch to use that particular monitor.
  164. # video_monitor_index = 0
  165.  
  166. # Forcibly disable composition. Only works in Windows Vista/7 for now.
  167. # video_disable_composition = false
  168.  
  169. # Video vsync.
  170. # video_vsync = true
  171.  
  172. # Interval at which a Vsync swap is performed.
  173. # 1 is normal, 2 is doubled frames, 3 is tripled frames, etc.
  174. # video_swap_interval = 1
  175.  
  176. # Max amount of swapchain images.
  177. # Single buffering = 1, Double buffering = 2, 3 = Triple buffering
  178. # video_max_swapchain_images = 3
  179.  
  180. # Forcibly disable sRGB FBO support. Some Intel OpenGL drivers on Windows
  181. # have video problems with sRGB FBO support enabled.
  182. # video_force_srgb_disable = false
  183.  
  184. # Attempts to hard-synchronize CPU and GPU. Can reduce latency at cost of performance.
  185. # video_hard_sync = false
  186.  
  187. # Sets how many frames CPU can run ahead of GPU when using video_hard_sync.
  188. # Maximum is 3.
  189. # video_hard_sync_frames = 0
  190.  
  191. # Sets how many milliseconds to delay after VSync before running the core.
  192. # Can reduce latency at cost of higher risk of stuttering.
  193. # Maximum is 15.
  194. # video_frame_delay = 0
  195.  
  196. # Inserts a black frame inbetween frames.
  197. # Useful for 120 Hz monitors who want to play 60 Hz material with eliminated ghosting.
  198. # video_refresh_rate should still be configured as if it is a 60 Hz monitor (divide refresh rate by 2).
  199. # video_black_frame_insertion = false
  200.  
  201. # Use threaded video driver. Using this might improve performance at possible cost of latency and more video stuttering.
  202. video_threaded = "true"
  203.  
  204. # Use a shared context for HW rendered libretro cores.
  205. # Avoids having to assume HW state changes inbetween frames.
  206. # video_shared_context = false
  207.  
  208. # Smoothens picture with bilinear filtering. Should be disabled if using pixel shaders.
  209. video_smooth = "false"
  210.  
  211. # Forces rendering area to stay equal to content aspect ratio or as defined in video_aspect_ratio.
  212. # video_force_aspect = true
  213.  
  214. # Only scales video in integer steps.
  215. # The base size depends on system-reported geometry and aspect ratio.
  216. # If video_force_aspect is not set, X/Y will be integer scaled independently.
  217. # video_scale_integer = false
  218.  
  219. # Index of the aspect ratio selection in the menu.
  220. # 19 = Config, 20 = 1:1 PAR, 21 = Core Provided, 22 = Custom Aspect Ratio
  221. # aspect_ratio_index = 19
  222.  
  223. # A floating point value for video aspect ratio (width / height).
  224. # If this is not set, aspect ratio is assumed to be automatic.
  225. # Behavior then is defined by video_aspect_ratio_auto.
  226. # video_aspect_ratio =
  227.  
  228. # If this is true and video_aspect_ratio is not set,
  229. # aspect ratio is decided by libretro implementation.
  230. # If this is false, 1:1 PAR will always be assumed if video_aspect_ratio is not set.
  231. video_aspect_ratio_auto = "true"
  232.  
  233. # Forces cropping of overscanned frames.
  234. # Exact behavior of this option is implementation specific.
  235. # video_crop_overscan = true
  236.  
  237. # Path to shader. Shader can be either Cg, CGP (Cg preset) or GLSL, GLSLP (GLSL preset)
  238. # video_shader = "/path/to/shader.{cg,cgp,glsl,glslp}"
  239.  
  240. # Load video_shader on startup.
  241. # Other shaders can still be loaded later in runtime.
  242. # video_shader_enable = false
  243.  
  244. # Defines a directory where shaders (Cg, CGP, GLSL) are kept for easy access.
  245. # video_shader_dir =
  246.  
  247. # CPU-based video filter. Path to a dynamic library.
  248. # video_filter =
  249.  
  250. # Defines a directory where CPU-based video filters are kept.
  251. # video_filter_dir =
  252.  
  253. # Path to a font used for rendering messages. This path must be defined to enable fonts.
  254. # Do note that the _full_ path of the font is necessary!
  255. # video_font_path =
  256.  
  257. # Size of the font rendered in points.
  258. video_font_size = "12"
  259.  
  260. # Enable usage of OSD messages.
  261. # video_font_enable = true
  262.  
  263. # Offset for where messages will be placed on screen. Values are in range 0.0 to 1.0 for both x and y values.
  264. # [0.0, 0.0] maps to the lower left corner of the screen.
  265. # video_message_pos_x = 0.05
  266. # video_message_pos_y = 0.05
  267.  
  268. # Color for message. The value is treated as a hexadecimal value.
  269. # It is a regular RGB hex number, i.e. red is "ff0000".
  270. # video_message_color = ffffff
  271.  
  272. # Background color for OSD messages. Red/Green/Blue values are from 0 to 255 and opacity is 0.0 to 1.0.
  273. video_message_bgcolor_enable = false
  274. video_message_bgcolor_red = 0
  275. video_message_bgcolor_green = 0
  276. video_message_bgcolor_blue = 0
  277. video_message_bgcolor_opacity = 1.0
  278.  
  279. # Video refresh rate of your monitor.
  280. # Used to calculate a suitable audio input rate.
  281. # video_refresh_rate = 59.94
  282.  
  283. # Allows libretro cores to set rotation modes.
  284. # Setting this to false will honor, but ignore this request.
  285. # This is useful for vertically oriented content where one manually rotates the monitor.
  286. # video_allow_rotate = true
  287.  
  288. # Forces a certain rotation of the screen.
  289. # The rotation is added to rotations which the libretro core sets (see video_allow_rotate).
  290. # The angle is <value> * 90 degrees counter-clockwise.
  291. # video_rotation = 0
  292.  
  293. #### Audio
  294.  
  295. # Enable audio.
  296. # audio_enable = true
  297.  
  298. # Mutes audio.
  299. # audio_mute_enable = false
  300.  
  301. # Mutes audio mixer volume globally.
  302. # audio_mixer_mute_enable = false
  303.  
  304. # Audio output samplerate.
  305. # audio_out_rate = 48000
  306.  
  307. # Audio resampler backend. Which audio resampler to use.
  308. # Default will use "sinc".
  309. # audio_resampler =
  310.  
  311. # Audio driver backend. Depending on configuration possible candidates are: alsa, pulse, oss, jack, rsound, roar, openal, sdl, xaudio.
  312. # audio_driver =
  313.  
  314. # 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 ...
  315. # audio_device =
  316.  
  317. # Audio DSP plugin that processes audio before it's sent to the driver. Path to a dynamic library.
  318. # audio_dsp_plugin =
  319.  
  320. # Directory where DSP plugins are kept.
  321. # audio_filter_dir =
  322.  
  323. # Will sync (block) on audio. Recommended.
  324. # audio_sync = true
  325.  
  326. # Desired audio latency in milliseconds. Might not be honored if driver can't provide given latency.
  327. # audio_latency = 64
  328.  
  329. # Enable audio rate control.
  330. # audio_rate_control = true
  331.  
  332. # Controls audio rate control delta. Defines how much input rate can be adjusted dynamically.
  333. # Input rate = in_rate * (1.0 +/- audio_rate_control_delta)
  334. # audio_rate_control_delta = 0.005
  335.  
  336. # Controls maximum audio timing skew. Defines the maximum change in input rate.
  337. # Input rate = in_rate * (1.0 +/- max_timing_skew)
  338. # audio_max_timing_skew = 0.05
  339.  
  340. # Audio volume. Volume is expressed in dB.
  341. # 0 dB is normal volume. No gain will be applied.
  342. # Gain can be controlled in runtime with input_volume_up/input_volume_down.
  343. # audio_volume = 0.0
  344.  
  345. # Audio mixer volume. Volume is expressed in dB.
  346. # 0 dB is normal volume. No gain will be applied.
  347. # audio_mixer_volume = 0.0
  348.  
  349. #### Overlay
  350.  
  351. # Defines a directory where overlays are kept for easy access.
  352. # overlay_directory =
  353.  
  354. # Enable the overlay.
  355. # input_overlay_enable = true
  356.  
  357. # Hide the current overlay from appearing inside the menu.
  358. # input_overlay_hide_in_menu = true
  359.  
  360. # Path to input overlay.
  361. # input_overlay =
  362.  
  363. # Opacity of all the UI elements of the overlay.
  364. # input_overlay_opacity = 1.0
  365.  
  366. # Scale of all UI elements of the overlay.
  367. # input_overlay_scale = 1.0
  368.  
  369. #### Input
  370.  
  371. # Input driver. Depending on video driver, it might force a different input driver.
  372. # input_driver = sdl
  373.  
  374. # Joypad driver. (Valid: linuxraw, sdl, dinput)
  375. input_joypad_driver = "udev"
  376.  
  377. # Path to input remapping file.
  378. # input_remapping_path =
  379.  
  380. # Input bind timer timeout.
  381. # Amount of seconds to wait until proceeding to the next bind. Default: 5, minimum: 1
  382. # input_bind_timeout = 1
  383.  
  384. # If enabled, overrides the input binds with the remapped binds set for the current core.
  385. # input_remap_binds_enable = true
  386.  
  387. # Maximum amount of users supported by RetroArch.
  388. # input_max_users = 16
  389.  
  390. # Keyboard layout for input driver if applicable (udev/evdev for now).
  391. # Syntax is either just layout (e.g. "no"), or a layout and variant separated with colon ("no:nodeadkeys").
  392. # input_keyboard_layout =
  393.  
  394. # Defines axis threshold. Possible values are [0.0, 1.0]
  395. # input_axis_threshold = 0.5
  396.  
  397. # Enable input auto-detection. Will attempt to autoconfigure
  398. # joypads, Plug-and-Play style.
  399. input_autodetect_enable = "true"
  400.  
  401. # Show the input descriptors set by the core instead of the
  402. # default ones.
  403. # input_descriptor_label_show = true
  404.  
  405. # Hide input descriptors that were not set by the core.
  406. # input_descriptor_hide_unbound = false
  407.  
  408. # Influence how input polling is done inside RetroArch.
  409. # 0 : Early - Input polling is performed before call to retro_run.
  410. # 1 : Normal - Input polling is performed when retro_input_poll is
  411. # requested.
  412. # 2 : Late - Input polling is performed on first call to retro_input_state
  413. # per frame
  414. #
  415. # Setting it to 0 or 2 can result in less latency depending on
  416. # your configuration.
  417. #
  418. # When netplay is enabled, the default polling behavior (1) will
  419. # be used regardless of the value set here.
  420. # input_poll_type_behavior = 1
  421.  
  422. # Directory for joypad autoconfigs.
  423. # If a joypad is plugged in, that joypad will be autoconfigured if a config file
  424. # corresponding to that joypad is present in joypad_autoconfig_dir.
  425. # Input binds which are made explicit (input_playerN_*_btn/axis) will take priority over autoconfigs.
  426. # Autoconfigs can be created with retroarch-joyconfig, manually, or with a frontend.
  427. # Requires input_autodetect_enable to be enabled.
  428. # joypad_autoconfig_dir =
  429.  
  430. # Sets which libretro device is used for a user.
  431. # Devices are indentified with a number.
  432. # This is normally saved by the menu.
  433. # Device IDs are found in libretro.h.
  434. # These settings are overridden by explicit command-line arguments which refer to input devices.
  435. # None: 0
  436. # Joypad (RetroPad): 1
  437. # Mouse: 2
  438. # Keyboard: 3
  439. # Generic Lightgun: 4
  440. # Joypad w/ Analog (RetroPad + Analog sticks): 5
  441. # Multitap (SNES specific): 257
  442. # Super Scope (SNES specific): 260
  443. # Justifier (SNES specific): 516
  444. # Justifiers (SNES specific): 772
  445.  
  446. # input_libretro_device_p1 =
  447. # input_libretro_device_p2 =
  448. # input_libretro_device_p3 =
  449. # input_libretro_device_p4 =
  450. # input_libretro_device_p5 =
  451. # input_libretro_device_p6 =
  452. # input_libretro_device_p7 =
  453. # input_libretro_device_p8 =
  454.  
  455. # Keyboard input. Will recognize letters ("a" to "z") and the following special keys (where "kp_"
  456. # is for keypad keys):
  457. #
  458. # left, right, up, down, enter, kp_enter, tab, insert, del, end, home,
  459. # rshift, shift, ctrl, alt, space, escape, add, subtract, kp_plus, kp_minus,
  460. # f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12,
  461. # num0, num1, num2, num3, num4, num5, num6, num7, num8, num9, pageup, pagedown,
  462. # keypad0, keypad1, keypad2, keypad3, keypad4, keypad5, keypad6, keypad7, keypad8, keypad9,
  463. # period, capslock, numlock, backspace, multiply, divide, print_screen, scroll_lock,
  464. # tilde, backquote, pause, quote, comma, minus, slash, semicolon, equals, leftbracket,
  465. # backslash, rightbracket, kp_period, kp_equals, rctrl, ralt
  466. #
  467. # Keyboard input, Joypad and Joyaxis will all obey the "nul" bind, which disables the bind completely,
  468. # rather than relying on a default.
  469. input_player1_a = "x"
  470. input_player1_b = "z"
  471. input_player1_y = "a"
  472. input_player1_x = "s"
  473. input_player1_start = "enter"
  474. input_player1_select = "rshift"
  475. input_player1_l = "q"
  476. input_player1_r = "w"
  477. input_player1_left = "left"
  478. input_player1_right = "right"
  479. input_player1_up = "up"
  480. input_player1_down = "down"
  481. # input_player1_l2 =
  482. # input_player1_r2 =
  483. # input_player1_l3 =
  484. # input_player1_r3 =
  485.  
  486. # Two analog sticks (DualShock-esque).
  487. # Bound as usual, however, if a real analog axis is bound,
  488. # it can be read as a true analog.
  489. # Positive X axis is right, Positive Y axis is down.
  490. # input_player1_l_x_plus =
  491. # input_player1_l_x_minus =
  492. # input_player1_l_y_plus =
  493. # input_player1_l_y_minus =
  494. # input_player1_r_x_plus =
  495. # input_player1_r_x_minus =
  496. # input_player1_r_y_plus =
  497. # input_player1_r_y_minus =
  498.  
  499. # If desired, it is possible to override which joypads are being used for user 1 through 8.
  500. # First joypad available is 0.
  501. # input_player1_joypad_index = 0
  502. # input_player2_joypad_index = 1
  503. # input_player3_joypad_index = 2
  504. # input_player4_joypad_index = 3
  505. # input_player5_joypad_index = 4
  506. # input_player6_joypad_index = 5
  507. # input_player7_joypad_index = 6
  508. # input_player8_joypad_index = 7
  509.  
  510. # Input device buttons.
  511. # Figure these out by using RetroArch-Phoenix or retroarch-joyconfig.
  512. # You can use joypad hats with hnxx, where n is the hat, and xx is a string representing direction.
  513. # E.g. "h0up"
  514. # input_player1_a_btn =
  515. # input_player1_b_btn =
  516. # input_player1_y_btn =
  517. # input_player1_x_btn =
  518. # input_player1_start_btn =
  519. # input_player1_select_btn =
  520. # input_player1_l_btn =
  521. # input_player1_r_btn =
  522. # input_player1_left_btn =
  523. # input_player1_right_btn =
  524. # input_player1_up_btn =
  525. # input_player1_down_btn =
  526. # input_player1_l2_btn =
  527. # input_player1_r2_btn =
  528. # input_player1_l3_btn =
  529. # input_player1_r3_btn =
  530.  
  531. # Menu buttons.
  532. # menu_search_btn =
  533. # menu_info_btn =
  534. # menu_default_btn =
  535. # menu_scroll_down_btn =
  536. # menu_scroll_up_btn =
  537.  
  538. # Swap buttons for OK/Cancel
  539. menu_swap_ok_cancel_buttons = "false"
  540.  
  541. # Axis for RetroArch D-Pad.
  542. # Needs to be either '+' or '-' in the first character signaling either positive or negative direction of the axis, then the axis number.
  543. # Do note that every other input option has the corresponding _btn and _axis binds as well; they are omitted here for clarity.
  544. # input_player1_left_axis =
  545. # input_player1_right_axis =
  546. # input_player1_up_axis =
  547. # input_player1_down_axis =
  548.  
  549. # Holding the turbo while pressing another button will let the button enter a turbo mode
  550. # where the button state is modulated with a periodic signal.
  551. # The modulation stops when the button itself (not turbo button) is released.
  552. # input_player1_turbo =
  553.  
  554. # Describes the period and how long of that period a turbo-enabled button should behave.
  555. # Numbers are described in frames.
  556. # input_turbo_period = 6
  557. # input_turbo_duty_cycle = 3
  558.  
  559. # This goes all the way to user 8 (*_player2_*, *_player3_*, etc), but omitted for clarity.
  560. # All input binds have corresponding binds for keyboard (none), joykeys (_btn) and joyaxes (_axis) as well.
  561.  
  562. # Toggles fullscreen.
  563. # input_toggle_fullscreen = f
  564.  
  565. # Saves state.
  566. # input_save_state = f2
  567. # Loads state.
  568. # input_load_state = f4
  569.  
  570. # State slots. With slot set to 0, save state name is *.state (or whatever defined on commandline).
  571. # When slot is != 0, path will be $path%d, where %d is slot number.
  572. # input_state_slot_increase = f7
  573. # input_state_slot_decrease = f6
  574.  
  575. # Toggles between fast-forwarding and normal speed.
  576. # input_toggle_fast_forward = space
  577.  
  578. # Hold for fast-forward. Releasing button disables fast-forward.
  579. # input_hold_fast_forward = l
  580.  
  581. # Key to exit RetroArch cleanly.
  582. # Killing it in any hard way (SIGKILL, etc) will terminate RetroArch without saving RAM, etc.
  583. # On Unix-likes, SIGINT/SIGTERM allows a clean deinitialization.
  584. input_exit_emulator = "escape"
  585.  
  586.  
  587. # Applies next and previous shader in directory.
  588. input_shader_next = "m"
  589. input_shader_prev = "n"
  590.  
  591. # Hold button down to rewind. Rewinding must be enabled.
  592. input_rewind = "r"
  593.  
  594. # Toggle between recording and not.
  595. # input_movie_record_toggle = o
  596.  
  597. # Toggle between paused and non-paused state
  598. # input_pause_toggle = p
  599.  
  600. # Frame advance when content is paused
  601. # input_frame_advance = k
  602.  
  603. # Reset the content.
  604. # input_reset = h
  605.  
  606. # Cheats.
  607. # input_cheat_index_plus = y
  608. # input_cheat_index_minus = t
  609. # input_cheat_toggle = u
  610.  
  611. # Mute/unmute audio
  612. # input_audio_mute = f9
  613.  
  614. # Take screenshot
  615. # input_screenshot = f8
  616.  
  617. # Netplay flip users.
  618. # input_netplay_flip_players = i
  619.  
  620. # Hold for slowmotion.
  621. # input_slowmotion = e
  622.  
  623. # Enable other hotkeys.
  624. # If this hotkey is bound to either keyboard, joybutton or joyaxis,
  625. # all other hotkeys will be disabled unless this hotkey is also held at the same time.
  626. # This is useful for RETRO_KEYBOARD centric implementations
  627. # which query a large area of the keyboard, where it is not desirable
  628. # that hotkeys get in the way.
  629.  
  630. # Alternatively, all hotkeys for keyboard could be disabled by the user.
  631. # input_enable_hotkey_btn =
  632.  
  633. # Increases audio volume.
  634. # input_volume_up = kp_plus
  635. # Decreases audio volume.
  636. # input_volume_down = kp_minus
  637.  
  638. # Toggles to next overlay. Wraps around.
  639. # input_overlay_next =
  640.  
  641. # Toggles eject for disks. Used for multiple-disk content.
  642. # input_disk_eject_toggle =
  643.  
  644. # Cycles through disk images. Use after ejecting.
  645. # Complete by toggling eject again.
  646. # input_disk_next =
  647.  
  648. # Toggles menu.
  649. # input_menu_toggle = f1
  650.  
  651. # RetroPad button combination to toggle menu
  652. # 0 = none, 1 = L + R + Y + D-Pad Down, 2 = L3 + R3, 3 = Start + Select
  653. # input_menu_toggle_gamepad_combo = 0
  654.  
  655. # allow any RetroPad to control the menu
  656. all_users_control_menu = "true"
  657.  
  658. # Toggles mouse grab. When mouse is grabbed, RetroArch hides the mouse,
  659. # and keeps the mouse pointer inside the window to allow relative mouse input
  660. # to work better.
  661. # input_grab_mouse_toggle = f11
  662.  
  663. #### Menu
  664.  
  665. # Menu driver to use. "rgui", "lakka", etc.
  666. menu_driver = "rgui"
  667.  
  668. # If disabled, will hide 'Online Updater' inside the menu.
  669. menu_show_online_updater = "false"
  670.  
  671. # If disabled, will hide the ability to update cores (and core info files) inside the menu.
  672. menu_show_core_updater = "false"
  673.  
  674. # If disabled, the libretro core will keep running in the background when we
  675. # are in the menu.
  676. # menu_pause_libretro = false
  677.  
  678. # If disabled, we use separate controls for menu operation.
  679. menu_unified_controls = "true"
  680.  
  681. # Enable mouse controls inside the menu.
  682. # menu_mouse_enable = false
  683.  
  684. # Enable touch controls inside the menu.
  685. # menu_pointer_enable = false
  686.  
  687. # Shows current date and/or time inside menu.
  688. # menu_timedate_enable = true
  689.  
  690. # Shows current battery level inside menu.
  691. # menu_battery_level_enable = true
  692.  
  693. # Shows current core inside menu.
  694. # menu_core_enable = true
  695.  
  696. # Path to an image to set as menu wallpaper.
  697. # menu_wallpaper =
  698.  
  699. # Dynamically load a new wallpaper depending on context.
  700. # menu_dynamic_wallpaper_enable = false
  701.  
  702. # Type of thumbnail to display. 0 = none, 1 = snaps, 2 = titles, 3 = boxarts
  703. # menu_thumbnails = 0
  704.  
  705. # Wrap-around to beginning and/or end if boundary of list is reached horizontally or vertically.
  706. # menu_navigation_wraparound_enable = false
  707.  
  708. # Filter files being shown in filebrowser by supported extensions.
  709. # menu_navigation_browser_filter_supported_extensions_enable = true
  710.  
  711. # Collapse subgroup settings into main group to create one big listing of settings
  712. # per category.
  713. # menu_collapse_subgroups_enable = false
  714.  
  715. #### Core
  716. #
  717. # Prevent libretro cores from closing RetroArch on exit by loading a dummy core.
  718. # load_dummy_on_core_shutdown = "true"
  719.  
  720. # Check for firmware requirement(s) before loading a content.
  721. # check_firmware_before_loading = "false"
  722.  
  723. #### UI
  724.  
  725. # Suspends the screensaver if set to true. Is a hint that does not necessarily have to be honored
  726. # by video driver.
  727. # suspend_screensaver_enable = true
  728.  
  729. # Start UI companion driver's interface on boot (if available).
  730. # ui_companion_start_on_boot = true
  731.  
  732. #### Camera
  733.  
  734. # Override the default camera device the camera driver uses. This is driver dependant.
  735. # camera_device =
  736.  
  737. # Override the default privacy permission for cores that want to access camera services. Is "false" by default.
  738. # camera_allow = false
  739.  
  740. #### Location
  741.  
  742. # Override the default privacy permission for cores that want to access location services. Is "false" by default.
  743. # location_allow = false
  744.  
  745. #### Core Updater
  746.  
  747. # URL to core update directory on buildbot.
  748. # core_updater_buildbot_url = "http://buildbot.libretro.com"
  749.  
  750. # URL to assets update directory on buildbot.
  751. # core_updater_buildbot_assets_url = "http://buildbot.libretro.com/assets/"
  752.  
  753. # After downloading, automatically extract archives that the downloads are contained inside.
  754. # core_updater_auto_extract_archive = true
  755.  
  756. #### Network
  757.  
  758. # When being client over netplay, use keybinds for user 1.
  759. # netplay_client_swap_input = false
  760.  
  761. # The username of the person running RetroArch. This will be used for playing online, for instance.
  762. # netplay_nickname =
  763.  
  764. # The amount of delay frames to use for netplay. Increasing this value will increase
  765. # performance, but introduce more latency.
  766. # netplay_delay_frames = 0
  767.  
  768. # Netplay mode for the current user.
  769. # false is Server, true is Client.
  770. # netplay_mode = false
  771.  
  772. # Enable or disable spectator mode for the user during netplay.
  773. # netplay_spectator_mode_enable = false
  774.  
  775. # The IP Address of the host to connect to.
  776. # netplay_ip_address =
  777.  
  778. # The port of the host IP Address. Can be either a TCP or UDP port.
  779. # netplay_ip_port = 55435
  780.  
  781. # Force game hosting to go through a man-in-the-middle server to get around firewalls and NAT/UPnP problems.
  782. # netplay_use_mitm_server = false
  783.  
  784. # The requested MITM server to use.
  785. # netplay_mitm_server = "nyc"
  786.  
  787. #### Misc
  788.  
  789. # Enable rewinding. This will take a performance hit when playing, so it is disabled by default.
  790. rewind_enable = "false"
  791.  
  792. # Rewinding buffer size in megabytes. Bigger rewinding buffer means you can rewind longer.
  793. # The buffer should be approx. 20MB per minute of buffer time.
  794. rewind_buffer_size = "10"
  795.  
  796. # Rewind granularity. When rewinding defined number of frames, you can rewind several frames at a time, increasing the rewinding speed.
  797. rewind_granularity = "2"
  798.  
  799. # Pause gameplay when window focus is lost.
  800. # pause_nonactive = true
  801.  
  802. # Autosaves the non-volatile SRAM at a regular interval. This is disabled by default unless set otherwise.
  803. # The interval is measured in seconds. A value of 0 disables autosave.
  804. # autosave_interval =
  805.  
  806. # Path to content database directory.
  807. # content_database_path =
  808.  
  809. # Path to cheat database directory.
  810. # cheat_database_path =
  811.  
  812. # Directory to dump screenshots to.
  813. # screenshot_directory =
  814.  
  815. # Records video after CPU video filter.
  816. # video_post_filter_record = false
  817.  
  818. # Records output of GPU shaded material if available.
  819. # video_gpu_record = false
  820.  
  821. # Screenshots output of GPU shaded material if available.
  822. video_gpu_screenshot = "true"
  823.  
  824. # Watch content shader files for changes and auto-apply as necessary.
  825. # video_shader_watch_files = false
  826.  
  827. # Block SRAM from being overwritten when loading save states.
  828. # Might potentially lead to buggy games.
  829. # block_sram_overwrite = false
  830.  
  831. # When saving a savestate, save state index is automatically increased before
  832. # it is saved.
  833. # Also, when loading content, the index will be set to the highest existing index.
  834. # There is no upper bound on the index.
  835. # savestate_auto_index = false
  836.  
  837. # Slowmotion ratio. When slowmotion, content will slow down by factor.
  838. # slowmotion_ratio = 3.0
  839.  
  840. # The maximum rate at which content will be run when using fast forward. (E.g. 5.0 for 60 fps content => 300 fps cap).
  841. # RetroArch will go to sleep to ensure that the maximum rate will not be exceeded.
  842. # Do not rely on this cap to be perfectly accurate.
  843. # If this is set at 0, then fastforward ratio is unlimited (no FPS cap)
  844. # fastforward_ratio = 0.0
  845.  
  846. # Enable stdin/network command interface.
  847. # network_cmd_enable = false
  848. # network_cmd_port = 55355
  849. # stdin_cmd_enable = false
  850. input_enable_hotkey = "nul"
  851. auto_remaps_enable = "true"
  852. xmb_show_add = "false"
  853. xmb_show_history = "false"
  854. xmb_show_images = "false"
  855. xmb_show_music = "false"
  856. xmb_shadows_enable = "false"
Add Comment
Please, Sign In to add comment