Guest User

4.4 /all/retroarch.cfg

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