Skip to content
This repository has been archived by the owner on Aug 18, 2020. It is now read-only.

Commit

Permalink
add 2 more flags when in safe mode
Browse files Browse the repository at this point in the history
  • Loading branch information
cleverca22 committed Aug 17, 2018
1 parent ead549f commit c412562
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/src/launcher/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ runWallet
runWallet shouldLog nd nLogPath lo = do
safeMode <- readSafeMode lo
let wpath = ndPath nd
wargs = (ndArgs nd) <> ["--safe-mode" | safeMode ]
wargs = (ndArgs nd) <> (if safeMode then [ "--safe-mode", "--disable-gpu", "--disable-d3d11" ] else [])
mWLogPath = ndLogPath nd
logNotice "Starting the wallet"
phvar <- newEmptyMVar
Expand Down

0 comments on commit c412562

Please sign in to comment.