Skip to content

Commit

Permalink
added commas in targetSeq (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
JelmerT authored and trottier committed Sep 24, 2019
1 parent cc1672c commit 2f6f599
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions games/017_Simon/src/simon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -588,6 +588,7 @@ bool playSimon(){
extra += "\"targetSeq\":\"";
for (int i = 0; i < sequenceLength; ++i){
extra += convertBitfieldToLetter(touchpad_sequence[i]);
if (i < (sequenceLength -1)){extra += ",";}
}
extra += "\",\"touchSeq\":\"";
for (int i = 0; i < touchLogIndex; ++i){
Expand Down

0 comments on commit 2f6f599

Please sign in to comment.