From 8b8d59eefb739349608f40cfacddf007f9d56f3b Mon Sep 17 00:00:00 2001 From: Chris Date: Thu, 20 Jan 2011 12:26:33 -0800 Subject: [PATCH] Don't use GetBoolArg() and mapArgs; use one or the other. --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index b7dfd9fab..051e9c4de 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;