1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-12 05:14:10 +02:00

Fixed -safe cmd line arg

This commit is contained in:
Brian Fiete 2022-01-16 08:00:04 -05:00
parent 4e18517c03
commit 2b848a275c

View file

@ -7192,13 +7192,13 @@ namespace IDE
} }
#endif #endif
fallthrough; fallthrough;
case "-forceSafe":
mSafeMode = true;
mNoResolve = true;
#if !CLI #if !CLI
case "-noRecover": case "-noRecover":
mFileRecovery?.mDisabled = true; mFileRecovery?.mDisabled = true;
#endif #endif
case "-forceSafe":
mSafeMode = true;
mNoResolve = true;
case "-deterministic": case "-deterministic":
mDeterministic = true; mDeterministic = true;
default: default: