aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorChris <chris@vikki-old.(none)>2011-01-20 12:26:33 -0800
committerChris <chris@vikki-old.(none)>2011-01-20 12:26:33 -0800
commit8b8d59eefb739349608f40cfacddf007f9d56f3b (patch)
tree2c29cdef92cddc26820ca39f6b34fa039088c0d2 /main.cpp
parentb4671902f2c5aa1c95be547a61b0a72b8a3025de (diff)
downloadbitcoin-8b8d59eefb739349608f40cfacddf007f9d56f3b.tar.xz
Don't use GetBoolArg() and mapArgs; use one or the other.
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 b7dfd9fabe..051e9c4de4 100644
--- a/main.cpp
+++ b/main.cpp
@@ -3455,7 +3455,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;