pre increment mode

pull/28/head
alanbjohnston 6 years ago committed by GitHub
parent 8eb069b1f8
commit 5d4f0d5a08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -320,7 +320,7 @@ int main(int argc, char *argv[]) {
while (loop-- != 0)
{
printf("Mode before: %d \n", mode);
mode = (mode++) % 3;
mode = (++mode) % 3;
printf("Mode after: %d \n", mode);
if (mode == FSK) {

Loading…
Cancel
Save

Powered by TurnKey Linux.