From 76344498bb7f594fa9e1f47875439167f8dfc1f2 Mon Sep 17 00:00:00 2001 From: Ted John Date: Mon, 5 Feb 2018 17:19:39 +0000 Subject: [PATCH] Fix outPath not set in platform_get_user_directory --- src/openrct2/Context.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/openrct2/Context.cpp b/src/openrct2/Context.cpp index fb703aff28..5fbb476927 100644 --- a/src/openrct2/Context.cpp +++ b/src/openrct2/Context.cpp @@ -1166,6 +1166,7 @@ void platform_get_user_directory(utf8 * outPath, const utf8 * subDirectory, size { path = Path::Combine(path, subDirectory); } + String::Set(outPath, outSize, path.c_str()); } /**