From ad6d2df5546e22ff0d358ce44a03ca4257e58065 Mon Sep 17 00:00:00 2001 From: Melon Bread Date: Mon, 4 Mar 2019 21:18:26 -0500 Subject: [PATCH] Think I got the macOS core path right this time --- RetroUFO_GUI.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RetroUFO_GUI.py b/RetroUFO_GUI.py index 6018d66..2f3e750 100755 --- a/RetroUFO_GUI.py +++ b/RetroUFO_GUI.py @@ -23,7 +23,7 @@ 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(os.path.expanduser('~')), - 'apple/osx': '{}/Library/Applications/RetroArch.app/Contents/Resources/cores'.format(os.path.expanduser('~')), # macOS + 'apple/osx': '/Applications/RetroArch.app/Contents/Resources/cores', # macOS 'windows': '{}/AppData/Roaming/RetroArch/cores'.format(os.path.expanduser('~')) }