Guest User

Untitled

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