Remove unnecessary spacing

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

View File

@@ -989,14 +989,11 @@ function ShowDefaultMode {
else {
$RemoveAppsInput = ShowDefaultModeAppRemovalOptions
if ($script:selectedApps.contains('Microsoft.XboxGameOverlay') -or $script:selectedApps.contains('Microsoft.XboxGamingOverlay')) {
Write-Output ""
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') {
if (($script:selectedApps.contains('Microsoft.XboxGameOverlay') -or $script:selectedApps.contains('Microsoft.XboxGamingOverlay')) -and
$( 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;
}
}
}
PrintHeader 'Default Mode'