1 From a1cd313f48c9dce60016a1cb48de8ed7ec2179f0 Mon Sep 17 00:00:00 2001
2 From: Maxime Gauduin <alucryd@archlinux.org>
3 Date: Wed, 18 Mar 2020 20:05:50 +0100
4 Subject: [PATCH] use more sensible paths
7 higan/target-byuu/byuu.cpp | 2 +-
8 1 file changed, 1 insertion(+), 1 deletion(-)
10 diff --git a/higan/target-byuu/byuu.cpp b/higan/target-byuu/byuu.cpp
11 index 026df2f..e73f00d 100644
12 --- a/higan/target-byuu/byuu.cpp
13 +++ b/higan/target-byuu/byuu.cpp
14 @@ -10,7 +10,7 @@ auto locate(const string& name) -> string {
15 string location = {Path::program(), name};
16 if(inode::exists(location)) return location;
18 - location = {Path::userData(), "byuu/", name};
19 + location = {Path::sharedData(), "byuu/", name};
20 if(inode::exists(location)) return location;
22 directory::create({Path::userSettings(), "byuu/"});