changeset 400:ad00ef776e79 draft

Don't use GetBoolArg() and mapArgs; use one or the other.
author Chris <chris@vikki-old.(none)>
date Thu, 20 Jan 2011 12:26:33 -0800
parents 3af73e577ced
children 79ec1bfaed63
files main.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/main.cpp
+++ b/main.cpp
@@ -3455,7 +3455,7 @@
     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;