Skip to content

Commit 7fcdafa

Browse files
j8rmmatyas
authored andcommitted
Fix QLatin1String error for flatpak
1 parent 06214fe commit 7fcdafa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/ProcessLauncher.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ void ProcessLauncher::onLaunchRequested(const model::GameFile* q_gamefile)
165165

166166
const QString raw_launch_cmd =
167167
#if defined(Q_OS_LINUX) && defined(PEGASUS_INSIDE_FLATPAK)
168-
QLatin1String("flatpak-spawn --host ") % game.launchCmd();
168+
QLatin1String("flatpak-spawn --host ") + game.launchCmd();
169169
#else
170170
game.launchCmd();
171171
#endif

0 commit comments

Comments
 (0)