commit 27c7384627b8421753542c552845df0d1a92864d parent bfbc782f2787c6eadf6855a396e887a6ceab9b40 Author: Adam M <[email protected]> Date: Wed, 13 Nov 2019 22:07:57 -0600 Initialize 2d array with double curliez Diffstat:
M | src/ComputerscareLaundrySoup.cpp | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/ComputerscareLaundrySoup.cpp b/src/ComputerscareLaundrySoup.cpp @@ -96,7 +96,7 @@ struct ComputerscareLaundrySoup : Module { bool activeStep[numFields] = {false}; - bool activePolyStep[numFields][16] = {false}; + bool activePolyStep[numFields][16] = {{false}}; bool shouldChange[numFields] = {false}; bool changeImminent[numFields] = {false};