Don't use GetBoolArg() and mapArgs; use one or the other.

This commit is contained in:
Chris 2011-01-20 12:26:33 -08:00
parent b4671902f2
commit 8b8d59eefb
1 changed files with 1 additions and 1 deletions

View File

@ -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;