From 4f537ce801e40abf6ad8468515d03c0aa1caabf5 Mon Sep 17 00:00:00 2001 From: RossTheRoss Date: Thu, 4 Apr 2019 19:44:00 -0500 Subject: ? --- ee1301/wk5/hw5_directory/strap012_HW5C.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ee1301') diff --git a/ee1301/wk5/hw5_directory/strap012_HW5C.cpp b/ee1301/wk5/hw5_directory/strap012_HW5C.cpp index bc42aa7..b81bb28 100644 --- a/ee1301/wk5/hw5_directory/strap012_HW5C.cpp +++ b/ee1301/wk5/hw5_directory/strap012_HW5C.cpp @@ -58,7 +58,7 @@ void getInput(int input[SIZE][SIZE]) { void makeNewArray(int oldArray[SIZE][SIZE], int newArray[SIZE][SIZE]) { for (int row = 0; row < SIZE-1; row++) { for (int column = 0; column < SIZE-1; column++) { - newArray[row][column] = oldArray[row-1][column-1]; + newArray[row][column] = oldArray[row][column]; } } } -- cgit v1.2.3