Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Xml Editing

Root-MtX edited this page Mar 10, 2019 · 3 revisions

Cores.xml - Preset core list for retorarch with paths

  • layout ex:
<details>
 <core>
  <name>Nintendo - Quicknes</name> 
   <path>/retroarch/cores/quicknes_libretro_libnx.nro</path>
   <show>true</show>
 </core>
<core> 
  <name>Super Nintendo - Snex9x</name> 
  <path>/retroarch/cores/snes9x_libretro_libnx.nro</path> 
  <show>true</show>
 </core>
</details>
  • name: Name of core
  • path: Path to the core
  • show: If set to anything but true it will be hidden

paths.xml - Preset rom path for where system roms are located

  • layout ex:
<details>
 <system>
  <name>Super Nintendo</name> 
  <path>/roms/Snes/</path>
  <show>true</show>
 </system>
 <system>
   <name>Nintendo 64</name> 
   <path>/roms/N64/</path>
   <show>true</show>
 </system>
</details>
  • name: Name of the System
  • path: Path to the rom directory per system
  • show: If set to anything but true it will be hidden
Clone this wiki locally