forked from pool/retroarch
- Update retroarch-config.patch * Disable menu_show_online_updater because thumbnails will be downloaded on demand and all other content should be provided by RPM packages * Set rgui_browser_directory to user home instead of system root * Enable network_on_demand_thumbnails option * Set system_directory so we can package some core system files - Recommends: * libretro-core-info * libretro-database * libretro-nestopia * libretro-bsnes * libretro-mgba * libretro-gambatte - Add retroarch-config.patch to disable in-app updates and enable system assets directory - Remove retroarch.desktop because it is already in source tarball - Update to 1.7.8.4 * Update AndroidManifest.xml - Update to 1.7.8.3 * Update CHANGES.md - Update to 1.7.8.2 * Update CHANGES.md - Recommend retroarch-joypad-autoconfig and retroarch-assets OBS-URL: https://build.opensuse.org/request/show/733946 OBS-URL: https://build.opensuse.org/package/show/Emulators/retroarch?expand=0&rev=15
91 lines
3.1 KiB
Diff
91 lines
3.1 KiB
Diff
diff -rub retroarch.orig/retroarch.cfg retroarch/retroarch.cfg
|
|
--- retroarch.orig/retroarch.cfg 2019-09-22 11:58:01.000000000 +0300
|
|
+++ retroarch/retroarch.cfg 2019-09-30 01:41:33.205860011 +0300
|
|
@@ -639,10 +639,10 @@
|
|
#### Menu
|
|
|
|
# If disabled, will hide 'Online Updater' inside the menu.
|
|
-# menu_show_online_updater = true
|
|
+menu_show_online_updater = false
|
|
|
|
# If disabled, will hide the ability to update cores (and core info files) inside the menu.
|
|
-# menu_show_core_updater = true
|
|
+menu_show_core_updater = false
|
|
|
|
# If disabled, the libretro core will keep running in the background when we
|
|
# are in the menu.
|
|
@@ -764,14 +764,14 @@
|
|
|
|
# Sets the System/BIOS directory.
|
|
# Implementations can query for this directory to load BIOSes, system-specific configs, etc.
|
|
-# system_directory =
|
|
+system_directory = /usr/share/libretro/system
|
|
|
|
# Save all downloaded files to this directory.
|
|
# core_assets_directory =
|
|
|
|
# Assets directory. This location is queried by default when menu interfaces try to look for
|
|
# loadable assets, etc.
|
|
-# assets_directory =
|
|
+assets_directory = /usr/share/libretro/assets
|
|
|
|
# Dynamic wallpapers directory. The place to store the wallpapers dynamically
|
|
# loaded by the menu depending on context.
|
|
@@ -781,31 +781,31 @@
|
|
# thumbnails_directory =
|
|
|
|
# File browser directory. Sets start directory for menu file browser.
|
|
-# rgui_browser_directory =
|
|
+rgui_browser_directory = ~/
|
|
|
|
# Core directory for libretro core implementations.
|
|
-# libretro_directory =
|
|
+libretro_directory = /usr/lib/libretro
|
|
|
|
# Core info directory for libretro core information.
|
|
-# libretro_info_path =
|
|
+libretro_info_path = /usr/share/libretro/info
|
|
|
|
# Path to content database directory.
|
|
-# content_database_path =
|
|
+content_database_path = /usr/share/libretro/database/rdb
|
|
|
|
# Saved queries are stored to this directory.
|
|
-# cursor_directory =
|
|
+cursor_directory = /usr/share/libretro/database/cursors
|
|
|
|
# Path to cheat database directory.
|
|
-# cheat_database_path =
|
|
+cheat_database_path = /usr/share/libretro/database/cht
|
|
|
|
# Defines a directory where CPU-based video filters are kept.
|
|
-# video_filter_dir =
|
|
+video_filter_dir = /usr/lib/libretro/filters/video
|
|
|
|
# Directory where DSP plugins are kept.
|
|
-# audio_filter_dir =
|
|
+audio_filter_dir = /usr/lib/libretro/filters/audio
|
|
|
|
# Defines a directory where shaders (Cg, CGP, GLSL) are kept for easy access.
|
|
-# video_shader_dir =
|
|
+video_shader_dir = /usr/share/libretro/shaders
|
|
|
|
# Recording output directory. Where recordings are saved.
|
|
# recording_output_directory =
|
|
@@ -825,7 +825,7 @@
|
|
# Input binds which are made explicit (input_playerN_*_btn/axis) will take priority over autoconfigs.
|
|
# Autoconfigs can be created with retroarch-joyconfig, manually, or with a frontend.
|
|
# Requires input_autodetect_enable to be enabled.
|
|
-# joypad_autoconfig_dir =
|
|
+joypad_autoconfig_dir = /usr/share/libretro/autoconfig
|
|
|
|
# Save all remapped controls to this directory.
|
|
# input_remapping_directory =
|
|
@@ -913,3 +913,6 @@
|
|
|
|
# Enable device vibration for supported cores
|
|
# enable_device_vibration = false
|
|
+
|
|
+# Download thumbnails from network on demand
|
|
+network_on_demand_thumbnails = true
|