From a9ba73c727d4f6bdbf9557a1e5b19930205ed379 Mon Sep 17 00:00:00 2001 From: tretrauit Date: Wed, 23 Jun 2021 13:34:11 +0000 Subject: [PATCH] Allow user to continue patch instead of exit if Proton 6+ not found. --- Games/Cities_Skylines/Win_Proton_dowser_patch.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Games/Cities_Skylines/Win_Proton_dowser_patch.sh b/Games/Cities_Skylines/Win_Proton_dowser_patch.sh index 5452b16..b9fbd0e 100644 --- a/Games/Cities_Skylines/Win_Proton_dowser_patch.sh +++ b/Games/Cities_Skylines/Win_Proton_dowser_patch.sh @@ -16,7 +16,13 @@ done if [[ $PROTON6 == false ]]; then echo "Proton 6/Proton - Experimental not found!" echo "Make sure you installed Proton 6+ for the game to launch properly." - exit 1 + echo "Proton 5 may work for Intel, but not for NVIDIA (it hang)" + read -p "Do you want to proceed? [Y/n] " -n 1 -r + echo + if ! [[ $REPLY =~ ^[Yy]$ ]] + then + exit 1 + fi fi echo "Patching dowser.exe --> Cities.exe" mv dowser.exe dowser.exe.bak