Guest User

retroarch config ipac2

a guest
Apr 27th, 2018
294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 29.43 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 = 0
  147. # video_fullscreen_y = 0
  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 = "false"
  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 = "/opt/retropie/emulators/retroarch/shader/crt-pi.glslp"
  238.  
  239. # Load video_shader on startup.
  240. # Other shaders can still be loaded later in runtime.
  241. video_shader_enable = true
  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 =3
  446. input_libretro_device_p2 =3
  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 = "z"
  469. input_player1_b = "shift"
  470. input_player1_y = "ctrl"
  471. input_player1_x = "alt"
  472. input_player1_start = "num1"
  473. #input_player1_select = "nul"
  474. #input_player1_l = "nul"
  475. #input_player1_r = "nul"
  476. input_player1_left = "left"
  477. input_player1_right = "right"
  478. input_player1_up = "up"
  479. input_player1_down = "down"
  480. #input_player1_l2 = "nul"
  481. #input_player1_r2 = "nul"
  482. #input_player1_l3 = "nul"
  483. #input_player1_r3 = "nul"
  484.  
  485. input_player2_a = "i"
  486. input_player2_b = "w"
  487. input_player2_y = "a"
  488. input_player2_x = "s"
  489. input_player2_start = "num2"
  490. #input_player2_select = "nul"
  491. #input_player2_l = "nul"
  492. #input_player2_r = "nul"
  493. input_player2_left = "d"
  494. input_player2_right = "g"
  495. input_player2_up = "r"
  496. input_player2_down = "f"
  497. #input_player2_l2 = "nul"
  498. #input_player2_r2 = "nul"
  499. #input_player2_l3 = "nul"
  500. #input_player2_r3 = "nul"
  501.  
  502. # Two analog sticks (DualShock-esque).
  503. # Bound as usual, however, if a real analog axis is bound,
  504. # it can be read as a true analog.
  505. # Positive X axis is right, Positive Y axis is down.
  506. # input_player1_l_x_plus =
  507. # input_player1_l_x_minus =
  508. # input_player1_l_y_plus =
  509. # input_player1_l_y_minus =
  510. # input_player1_r_x_plus =
  511. # input_player1_r_x_minus =
  512. # input_player1_r_y_plus =
  513. # input_player1_r_y_minus =
  514.  
  515. # If desired, it is possible to override which joypads are being used for user 1 through 8.
  516. # First joypad available is 0.
  517. # input_player1_joypad_index = 0
  518. # input_player2_joypad_index = 1
  519. # input_player3_joypad_index = 2
  520. # input_player4_joypad_index = 3
  521. # input_player5_joypad_index = 4
  522. # input_player6_joypad_index = 5
  523. # input_player7_joypad_index = 6
  524. # input_player8_joypad_index = 7
  525.  
  526. # Input device buttons.
  527. # Figure these out by using RetroArch-Phoenix or retroarch-joyconfig.
  528. # You can use joypad hats with hnxx, where n is the hat, and xx is a string representing direction.
  529. # E.g. "h0up"
  530. # input_player1_a_btn =
  531. # input_player1_b_btn =
  532. # input_player1_y_btn =
  533. # input_player1_x_btn =
  534. # input_player1_start_btn =
  535. # input_player1_select_btn =
  536. # input_player1_l_btn =
  537. # input_player1_r_btn =
  538. # input_player1_left_btn =
  539. # input_player1_right_btn =
  540. # input_player1_up_btn =
  541. # input_player1_down_btn =
  542. # input_player1_l2_btn =
  543. # input_player1_r2_btn =
  544. # input_player1_l3_btn =
  545. # input_player1_r3_btn =
  546.  
  547. # Menu buttons.
  548. # menu_search_btn =
  549. # menu_info_btn =
  550. # menu_default_btn =
  551. # menu_scroll_down_btn =
  552. # menu_scroll_up_btn =
  553.  
  554. # Swap buttons for OK/Cancel
  555. menu_swap_ok_cancel_buttons = "false"
  556.  
  557. # Axis for RetroArch D-Pad.
  558. # Needs to be either '+' or '-' in the first character signaling either positive or negative direction of the axis, then the axis number.
  559. # Do note that every other input option has the corresponding _btn and _axis binds as well; they are omitted here for clarity.
  560. # input_player1_left_axis =
  561. # input_player1_right_axis =
  562. # input_player1_up_axis =
  563. # input_player1_down_axis =
  564.  
  565. # Holding the turbo while pressing another button will let the button enter a turbo mode
  566. # where the button state is modulated with a periodic signal.
  567. # The modulation stops when the button itself (not turbo button) is released.
  568. # input_player1_turbo =
  569.  
  570. # Describes the period and how long of that period a turbo-enabled button should behave.
  571. # Numbers are described in frames.
  572. # input_turbo_period = 6
  573. # input_turbo_duty_cycle = 3
  574.  
  575. # This goes all the way to user 8 (*_player2_*, *_player3_*, etc), but omitted for clarity.
  576. # All input binds have corresponding binds for keyboard (none), joykeys (_btn) and joyaxes (_axis) as well.
  577.  
  578. # Toggles fullscreen.
  579. # input_toggle_fullscreen = f
  580.  
  581. # Saves state.
  582. input_save_state = ""
  583. # Loads state.
  584. input_load_state = ""
  585.  
  586. # State slots. With slot set to 0, save state name is *.state (or whatever defined on commandline).
  587. # When slot is != 0, path will be $path%d, where %d is slot number.
  588. input_state_slot_increase = ""
  589. input_state_slot_decrease = ""
  590.  
  591. # Toggles between fast-forwarding and normal speed.
  592. input_toggle_fast_forward = nul
  593.  
  594. # Hold for fast-forward. Releasing button disables fast-forward.
  595. # input_hold_fast_forward = l
  596.  
  597. # Key to exit RetroArch cleanly.
  598. # Killing it in any hard way (SIGKILL, etc) will terminate RetroArch without saving RAM, etc.
  599. # On Unix-likes, SIGINT/SIGTERM allows a clean deinitialization.
  600. input_exit_emulator = "escape"
  601.  
  602.  
  603. # Applies next and previous shader in directory.
  604. input_shader_next = ""
  605. input_shader_prev = ""
  606.  
  607. # Hold button down to rewind. Rewinding must be enabled.
  608. input_rewind = ""
  609.  
  610. # Toggle between recording and not.
  611. # input_movie_record_toggle = o
  612.  
  613. # Toggle between paused and non-paused state
  614. input_pause_toggle = nul
  615.  
  616. # Frame advance when content is paused
  617. input_frame_advance = nul
  618.  
  619. # Reset the content.
  620. input_reset = ""
  621.  
  622. # Cheats.
  623. # input_cheat_index_plus = y
  624. # input_cheat_index_minus = t
  625. # input_cheat_toggle = u
  626.  
  627. # Mute/unmute audio
  628. # input_audio_mute = f9
  629.  
  630. # Take screenshot
  631. # input_screenshot = f8
  632.  
  633. # Netplay flip users.
  634. # input_netplay_flip_players = i
  635.  
  636. # Hold for slowmotion.
  637. # input_slowmotion = e
  638.  
  639. # Enable other hotkeys.
  640. # If this hotkey is bound to either keyboard, joybutton or joyaxis,
  641. # all other hotkeys will be disabled unless this hotkey is also held at the same time.
  642. # This is useful for RETRO_KEYBOARD centric implementations
  643. # which query a large area of the keyboard, where it is not desirable
  644. # that hotkeys get in the way.
  645.  
  646. # Alternatively, all hotkeys for keyboard could be disabled by the user.
  647. # input_enable_hotkey_btn =
  648.  
  649. # Increases audio volume.
  650. # input_volume_up = kp_plus
  651. # Decreases audio volume.
  652. # input_volume_down = kp_minus
  653.  
  654. # Toggles to next overlay. Wraps around.
  655. # input_overlay_next =
  656.  
  657. # Toggles eject for disks. Used for multiple-disk content.
  658. # input_disk_eject_toggle =
  659.  
  660. # Cycles through disk images. Use after ejecting.
  661. # Complete by toggling eject again.
  662. # input_disk_next =
  663.  
  664. # Toggles menu.
  665. input_menu_toggle = "f1"
  666.  
  667. # RetroPad button combination to toggle menu
  668. # 0 = none, 1 = L + R + Y + D-Pad Down, 2 = L3 + R3, 3 = Start + Select
  669. # input_menu_toggle_gamepad_combo = 0
  670.  
  671. # allow any RetroPad to control the menu
  672. all_users_control_menu = "true"
  673.  
  674. # Toggles mouse grab. When mouse is grabbed, RetroArch hides the mouse,
  675. # and keeps the mouse pointer inside the window to allow relative mouse input
  676. # to work better.
  677. # input_grab_mouse_toggle = f11
  678.  
  679. #### Menu
  680.  
  681. # Menu driver to use. "rgui", "lakka", etc.
  682. menu_driver = "rgui"
  683.  
  684. # If disabled, will hide 'Online Updater' inside the menu.
  685. menu_show_online_updater = "false"
  686.  
  687. # If disabled, will hide the ability to update cores (and core info files) inside the menu.
  688. menu_show_core_updater = "false"
  689.  
  690. # If disabled, the libretro core will keep running in the background when we
  691. # are in the menu.
  692. # menu_pause_libretro = false
  693.  
  694. # If disabled, we use separate controls for menu operation.
  695. menu_unified_controls = "true"
  696.  
  697. # Enable mouse controls inside the menu.
  698. # menu_mouse_enable = false
  699.  
  700. # Enable touch controls inside the menu.
  701. # menu_pointer_enable = false
  702.  
  703. # Shows current date and/or time inside menu.
  704. # menu_timedate_enable = true
  705.  
  706. # Shows current battery level inside menu.
  707. # menu_battery_level_enable = true
  708.  
  709. # Shows current core inside menu.
  710. # menu_core_enable = true
  711.  
  712. # Path to an image to set as menu wallpaper.
  713. # menu_wallpaper =
  714.  
  715. # Dynamically load a new wallpaper depending on context.
  716. # menu_dynamic_wallpaper_enable = false
  717.  
  718. # Type of thumbnail to display. 0 = none, 1 = snaps, 2 = titles, 3 = boxarts
  719. # menu_thumbnails = 0
  720.  
  721. # Wrap-around to beginning and/or end if boundary of list is reached horizontally or vertically.
  722. # menu_navigation_wraparound_enable = false
  723.  
  724. # Filter files being shown in filebrowser by supported extensions.
  725. # menu_navigation_browser_filter_supported_extensions_enable = true
  726.  
  727. # Collapse subgroup settings into main group to create one big listing of settings
  728. # per category.
  729. # menu_collapse_subgroups_enable = false
  730.  
  731. #### Core
  732. #
  733. # Prevent libretro cores from closing RetroArch on exit by loading a dummy core.
  734. # load_dummy_on_core_shutdown = "true"
  735.  
  736. # Check for firmware requirement(s) before loading a content.
  737. # check_firmware_before_loading = "false"
  738.  
  739. #### UI
  740.  
  741. # Suspends the screensaver if set to true. Is a hint that does not necessarily have to be honored
  742. # by video driver.
  743. # suspend_screensaver_enable = true
  744.  
  745. # Start UI companion driver's interface on boot (if available).
  746. # ui_companion_start_on_boot = true
  747.  
  748. #### Camera
  749.  
  750. # Override the default camera device the camera driver uses. This is driver dependant.
  751. # camera_device =
  752.  
  753. # Override the default privacy permission for cores that want to access camera services. Is "false" by default.
  754. # camera_allow = false
  755.  
  756. #### Location
  757.  
  758. # Override the default privacy permission for cores that want to access location services. Is "false" by default.
  759. # location_allow = false
  760.  
  761. #### Core Updater
  762.  
  763. # URL to core update directory on buildbot.
  764. # core_updater_buildbot_url = "http://buildbot.libretro.com"
  765.  
  766. # URL to assets update directory on buildbot.
  767. # core_updater_buildbot_assets_url = "http://buildbot.libretro.com/assets/"
  768.  
  769. # After downloading, automatically extract archives that the downloads are contained inside.
  770. # core_updater_auto_extract_archive = true
  771.  
  772. #### Network
  773.  
  774. # When being client over netplay, use keybinds for user 1.
  775. # netplay_client_swap_input = false
  776.  
  777. # The username of the person running RetroArch. This will be used for playing online, for instance.
  778. # netplay_nickname =
  779.  
  780. # The amount of delay frames to use for netplay. Increasing this value will increase
  781. # performance, but introduce more latency.
  782. # netplay_delay_frames = 0
  783.  
  784. # Netplay mode for the current user.
  785. # false is Server, true is Client.
  786. # netplay_mode = false
  787.  
  788. # Enable or disable spectator mode for the user during netplay.
  789. # netplay_spectator_mode_enable = false
  790.  
  791. # The IP Address of the host to connect to.
  792. # netplay_ip_address =
  793.  
  794. # The port of the host IP Address. Can be either a TCP or UDP port.
  795. # netplay_ip_port = 55435
  796.  
  797. # Force game hosting to go through a man-in-the-middle server to get around firewalls and NAT/UPnP problems.
  798. # netplay_use_mitm_server = false
  799.  
  800. # The requested MITM server to use.
  801. # netplay_mitm_server = "nyc"
  802.  
  803. #### Misc
  804.  
  805. # Enable rewinding. This will take a performance hit when playing, so it is disabled by default.
  806. rewind_enable = "false"
  807.  
  808. # Rewinding buffer size in megabytes. Bigger rewinding buffer means you can rewind longer.
  809. # The buffer should be approx. 20MB per minute of buffer time.
  810. rewind_buffer_size = "10"
  811.  
  812. # Rewind granularity. When rewinding defined number of frames, you can rewind several frames at a time, increasing the rewinding speed.
  813. rewind_granularity = "2"
  814.  
  815. # Pause gameplay when window focus is lost.
  816. # pause_nonactive = true
  817.  
  818. # Autosaves the non-volatile SRAM at a regular interval. This is disabled by default unless set otherwise.
  819. # The interval is measured in seconds. A value of 0 disables autosave.
  820. # autosave_interval =
  821.  
  822. # Path to content database directory.
  823. # content_database_path =
  824.  
  825. # Path to cheat database directory.
  826. # cheat_database_path =
  827.  
  828. # Directory to dump screenshots to.
  829. # screenshot_directory =
  830.  
  831. # Records video after CPU video filter.
  832. # video_post_filter_record = false
  833.  
  834. # Records output of GPU shaded material if available.
  835. # video_gpu_record = false
  836.  
  837. # Screenshots output of GPU shaded material if available.
  838. video_gpu_screenshot = "true"
  839.  
  840. # Watch content shader files for changes and auto-apply as necessary.
  841. # video_shader_watch_files = false
  842.  
  843. # Block SRAM from being overwritten when loading save states.
  844. # Might potentially lead to buggy games.
  845. # block_sram_overwrite = false
  846.  
  847. # When saving a savestate, save state index is automatically increased before
  848. # it is saved.
  849. # Also, when loading content, the index will be set to the highest existing index.
  850. # There is no upper bound on the index.
  851. # savestate_auto_index = false
  852.  
  853. # Slowmotion ratio. When slowmotion, content will slow down by factor.
  854. # slowmotion_ratio = 3.0
  855.  
  856. # The maximum rate at which content will be run when using fast forward. (E.g. 5.0 for 60 fps content => 300 fps cap).
  857. # RetroArch will go to sleep to ensure that the maximum rate will not be exceeded.
  858. # Do not rely on this cap to be perfectly accurate.
  859. # If this is set at 0, then fastforward ratio is unlimited (no FPS cap)
  860. # fastforward_ratio = 0.0
  861.  
  862. # Enable stdin/network command interface.
  863. # network_cmd_enable = false
  864. # network_cmd_port = 55355
  865. # stdin_cmd_enable = false
  866. input_enable_hotkey = "nul"
  867. auto_remaps_enable = "true"
  868. xmb_show_add = "false"
  869. xmb_show_history = "false"
  870. xmb_show_images = "false"
  871. xmb_show_music = "false"
  872. xmb_shadows_enable = "false"
Add Comment
Please, Sign In to add comment