aboutsummaryrefslogtreecommitdiff
path: root/client/global.gd
diff options
context:
space:
mode:
Diffstat (limited to 'client/global.gd')
-rw-r--r--client/global.gd4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/global.gd b/client/global.gd
index 461693ce..23e9756c 100644
--- a/client/global.gd
+++ b/client/global.gd
@@ -37,8 +37,8 @@ var focused_node: Control
var focused_menu: Menu # only use this as a last resort, currently exists to open setup menu from settings
func _ready():
- Profile.load("user://profile")
- Settings.load("user://settings.json")
+ Profile.load(OS.get_data_dir().path_join("hurrycurry").path_join("profile"))
+ Settings.load(OS.get_config_dir().path_join("hurrycurry").path_join("settings.json"))
get_viewport().gui_focus_changed.connect(Sound.play_hover_maybe)
get_viewport().gui_focus_changed.connect(func(node): focused_node = node)