Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
Exzap committed Jul 23, 2024
1 parent 3257c54 commit 04ad4dd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/gui/CemuApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,11 @@ void CemuApp::DeterminePaths(std::set<fs::path>& failedWriteAccess) // for Linux
// GetExecutablePath returns the AppImage's temporary mount location
wxString appImagePath;
if (wxGetEnv(("APPIMAGE"), &appImagePath))
{
exePath = wxHelper::MakeFSPath(appImagePath);
portablePath = exePath.parent_path() / "portable";
printf("AppImage-portablePath: %s\n", portablePath.string().c_str());
}
printf("appImagePath: %s\n", appImagePath.ToStdString().c_str());
printf("standardPaths.GetDataDir(): %s\n", standardPaths.GetDataDir().ToStdString().c_str());
if (fs::exists(portablePath, ec))
Expand Down

0 comments on commit 04ad4dd

Please sign in to comment.