Remove unnecessary spacing

This commit is contained in:
Raphire
2025-12-16 23:25:17 +01:00
parent 71043ccc7d
commit 48cd513f14

View File

@@ -989,12 +989,9 @@ function ShowDefaultMode {
else { else {
$RemoveAppsInput = ShowDefaultModeAppRemovalOptions $RemoveAppsInput = ShowDefaultModeAppRemovalOptions
if ($script:selectedApps.contains('Microsoft.XboxGameOverlay') -or $script:selectedApps.contains('Microsoft.XboxGamingOverlay')) { if (($script:selectedApps.contains('Microsoft.XboxGameOverlay') -or $script:selectedApps.contains('Microsoft.XboxGamingOverlay')) -and
Write-Output "" $( Read-Host -Prompt "Disable Game Bar integration and game/screen recording? This also stops ms-gamingoverlay and ms-gamebar popups (y/n)" ) -eq 'y') {
$DisableGameBarIntegrationInput = $true;
if ($( Read-Host -Prompt "Disable Game Bar integration and game/screen recording? This also stops ms-gamingoverlay and ms-gamebar popups (y/n)" ) -eq 'y') {
$DisableGameBarIntegrationInput = $true;
}
} }
} }