aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDLL/config/profile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'NorthstarDLL/config/profile.cpp')
-rw-r--r--NorthstarDLL/config/profile.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/NorthstarDLL/config/profile.cpp b/NorthstarDLL/config/profile.cpp
index 08c91208..80ddb59f 100644
--- a/NorthstarDLL/config/profile.cpp
+++ b/NorthstarDLL/config/profile.cpp
@@ -2,7 +2,7 @@
#include "dedicated/dedicated.h"
#include <string>
-std::string GetNorthstarPrefix()
+fs::path GetNorthstarPrefix()
{
return NORTHSTAR_FOLDER_PREFIX;
}
@@ -39,5 +39,5 @@ void InitialiseNorthstarPrefix()
// set the console title to show the current profile
// dont do this on dedi as title contains useful information on dedi and setting title breaks it as well
if (!IsDedicatedServer())
- SetConsoleTitleA((std::string("NorthstarLauncher | ") + NORTHSTAR_FOLDER_PREFIX).c_str());
+ SetConsoleTitleA((fs::path("NorthstarLauncher | ") / NORTHSTAR_FOLDER_PREFIX).string().c_str());
}