diff options
| author | Gavin Andresen <[email protected]> | 2011-01-20 16:21:59 -0500 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2011-01-20 16:21:59 -0500 |
| commit | 245e1b4fdba704cdb1e9fa4d33d6e09d0647e0fe (patch) | |
| tree | f8d3065e83ac432ff819db4a7b77e4f79a51740b /main.cpp | |
| parent | Merge branch 'showdefaultsinhelp' of https://github.com/dooglus/bitcoin into ... (diff) | |
| parent | Don't use GetBoolArg() and mapArgs; use one or the other. (diff) | |
| download | discoin-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.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |