We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36d1cb1 commit 2651484Copy full SHA for 2651484
source/activation.cpp
@@ -57,11 +57,11 @@ void PersonalActivationDlg::OnCreateHit(wxCommandEvent& evt)
57
void DisplayLicenseOutput(){
58
std::filesystem::path logfile
59
#ifdef __APPLE__
60
- = std::filesystem::path(wxGetHomeDir()) / "Library/Logs/Unity/Editor.log";
+ = std::filesystem::path(wxGetHomeDir().ToStdString()) / "Library/Logs/Unity/Editor.log";
61
#elif defined _WIN32
62
= std::filesystem::path(wxGetHomeDir().ToStdString()) / "AppData"/"Local"/"Unity"/"Editor"/"Editor.log";
63
#else
64
- = std::filesystem::path(wxGetHomeDir()) / ".config/unity3d/Editor.log";
+ = std::filesystem::path(wxGetHomeDir().ToStdString()) / ".config/unity3d/Editor.log";
65
#endif
66
ifstream in(logfile);
67
std::string output;
0 commit comments