From 9404459ef947aad2ca5beff3d043e20c64f56809 Mon Sep 17 00:00:00 2001 From: Melon Bread Date: Sun, 21 Oct 2018 03:33:19 -0400 Subject: [PATCH] Add initial Nintendo Switch support :video_game: --- RetroUFO.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/RetroUFO.py b/RetroUFO.py index d45368f..ea07183 100644 --- a/RetroUFO.py +++ b/RetroUFO.py @@ -20,7 +20,8 @@ URL = 'https://buildbot.libretro.com/nightly' # These are the default core locations with normal RetroArch installs based off of 'retroarch.default.cfg` CORE_LOCATION = { - 'linux': '{}/.config/retroarch/cores/'.format(Path.home()), + 'linux': '{}/.config/retroarch/cores'.format(Path.home()), + 'switch': '/retroarch/cores', 'windows': '{}/AppData/Roaming/RetroArch/cores'.format(Path.home()) }