Skip to content

Commit

Permalink
[FIX] Don't enable mangohud in steam deck gamemode
Browse files Browse the repository at this point in the history
  • Loading branch information
Etaash-mathamsetty committed Feb 2, 2025
1 parent 3f7033e commit 62fd883
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/launcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ async function prepareLaunch(
let mangoHudCommand: string[] = []
let gameModeBin: string | null = null
const gameScopeCommand: string[] = []
if (gameSettings.showMangohud) {
if (gameSettings.showMangohud && !isSteamDeckGameMode) {
const mangoHudBin = await searchForExecutableOnPath('mangohud')
if (!mangoHudBin) {
return {
Expand Down

0 comments on commit 62fd883

Please sign in to comment.