From 45912da67cf5de5717ac80349cfd41adf7727aaa Mon Sep 17 00:00:00 2001 From: RossTheRoss Date: Sat, 23 Feb 2019 17:43:48 -0600 Subject: g --- ee1301/wk3/hw3_directory/strap012_HW3A.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ee1301/wk3') diff --git a/ee1301/wk3/hw3_directory/strap012_HW3A.cpp b/ee1301/wk3/hw3_directory/strap012_HW3A.cpp index 1292657..d8db2b1 100644 --- a/ee1301/wk3/hw3_directory/strap012_HW3A.cpp +++ b/ee1301/wk3/hw3_directory/strap012_HW3A.cpp @@ -18,7 +18,7 @@ int spin_the_wheel(int d, int w) { spinOG = rand() % d + 1; for (int i=w; i>0; i--) { spinNew = rand() % d + 1; - if (spinNew==spingOG) { + if (spinNew==spinOG) { //Do nothing } else { return 0; -- cgit v1.2.3