We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a2f68a commit 2e822a7Copy full SHA for 2e822a7
1 file changed
tools/liquid-audio/runner.cpp
@@ -485,7 +485,7 @@ class Runner::RunnerImpl {
485
text_done = true;
486
}
487
488
- if (modality_left == 0 or text_done) {
+ if (modality_left == 0 || text_done) {
489
modality_left = interleaved_n_audio;
490
current_modality = Modality::AUDIO_OUT;
491
@@ -498,7 +498,7 @@ class Runner::RunnerImpl {
498
499
500
modality_left -= 1;
501
- if (modality_left == 0 and not text_done) {
+ if (modality_left == 0 && !text_done) {
502
current_modality = Modality::TEXT;
503
modality_left = interleaved_n_text;
504
0 commit comments