diff options
| author | Chris <chris@vikki-old.(none)> | 2011-01-20 12:26:33 -0800 |
|---|---|---|
| committer | Chris <chris@vikki-old.(none)> | 2011-01-20 12:26:33 -0800 |
| commit | 8b8d59eefb739349608f40cfacddf007f9d56f3b (patch) | |
| tree | 2c29cdef92cddc26820ca39f6b34fa039088c0d2 /main.cpp | |
| parent | Merge branch 'listaccountsbug' of https://github.com/gavinandresen/bitcoin-gi... (diff) | |
| download | discoin-8b8d59eefb739349608f40cfacddf007f9d56f3b.tar.xz discoin-8b8d59eefb739349608f40cfacddf007f9d56f3b.zip | |
Don't use GetBoolArg() and mapArgs; use one or the other.
Diffstat (limited to 'main.cpp')
| -rw-r--r-- | main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |