From 8ff81312ad5901de1d7c27809c605221c9504383 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 2 May 2016 02:48:37 +0200 Subject: [PATCH] Fix fill_pathname_application_data --- file_path_special.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/file_path_special.c b/file_path_special.c index 16a7927573..125d6bd35c 100644 --- a/file_path_special.c +++ b/file_path_special.c @@ -176,10 +176,10 @@ bool fill_pathname_application_data(char *s, size_t len) { #ifdef __HAIKU__ fill_pathname_join(s, appdata, - "config/settings/retroarch", len); + "config/settings/retroarch/", len); #else fill_pathname_join(s, appdata, - ".config/retroarch", len); + ".config/retroarch/", len); #endif return true; }