aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorGavin Andresen <[email protected]>2011-01-20 16:21:59 -0500
committerGavin Andresen <[email protected]>2011-01-20 16:21:59 -0500
commit245e1b4fdba704cdb1e9fa4d33d6e09d0647e0fe (patch)
treef8d3065e83ac432ff819db4a7b77e4f79a51740b /main.cpp
parentMerge branch 'showdefaultsinhelp' of https://github.com/dooglus/bitcoin into ... (diff)
parentDon't use GetBoolArg() and mapArgs; use one or the other. (diff)
downloaddiscoin-245e1b4fdba704cdb1e9fa4d33d6e09d0647e0fe.tar.xz
discoin-245e1b4fdba704cdb1e9fa4d33d6e09d0647e0fe.zip
Merge branch '4wayswitch' of https://github.com/dooglus/bitcoin into integration
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.cpp b/main.cpp
index 3079d3846..d19cbeff9 100644
--- a/main.cpp
+++ b/main.cpp
@@ -3530,7 +3530,7 @@ void BitcoinMiner()
SetThreadPriority(THREAD_PRIORITY_LOWEST);
bool f4WaySSE2 = Detect128BitSSE2();
if (mapArgs.count("-4way"))
- f4WaySSE2 = GetBoolArg(mapArgs["-4way"]);
+ f4WaySSE2 = GetBoolArg("-4way");
// Each thread has its own key and counter
CReserveKey reservekey;