Skip to content

Commit

Permalink
Fix debug printf argument ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
HunterWhyte committed Jan 5, 2023
1 parent 895ebf6 commit b3afde2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jumaudio.c
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ ma_int32 jum_startPlayback(jum_AudioSetup* setup, const char* filepath, ma_int32
}
}

printf("Starting playback of '%s', on device [%d]'%s'\n", device_index, filepath, selected_device_name);
printf("Starting playback of '%s', on device [%d]'%s'\n", filepath, device_index, selected_device_name);
jum_printAudioInfo(setup->info);
#endif

Expand Down

0 comments on commit b3afde2

Please sign in to comment.