diff options
Diffstat (limited to 'src/main.odin')
| -rw-r--r-- | src/main.odin | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.odin b/src/main.odin index 37c17c1..c0f66ba 100644 --- a/src/main.odin +++ b/src/main.odin @@ -746,9 +746,9 @@ walk_directory :: proc(path : string, file_number : ^int, job_list : ^[dynamic]s if wav_count>0 && !has_csv { indent_by(depth+1) if wav_count == 1 { - fmt.printf("💽 [#%d] 1 WAV file, without CSV.\n", file_number^) + fmt.printf("💽 [#%d] 1 WAV file.\n", file_number^) } else { - fmt.printf("💽 [#%d] %d WAV files, without CSV.\n", file_number^, wav_count) + fmt.printf("💽 [#%d] %d WAV files.\n", file_number^, wav_count) } append(job_list, strings.clone(path)) file_number^ += 1 @@ -803,9 +803,9 @@ walk_directory_os2 :: proc(path : string, file_number : ^int, job_list : ^[dynam if wav_count>0 && !has_csv { indent_by(depth+1) if wav_count == 1 { - fmt.printf("💽 [#%d] A WAV file, without CSV.\n", file_number^) + fmt.printf("💽 [#%d] A WAV file.\n", file_number^) } else { - fmt.printf("💽 [#%d] %d WAV files, without CSV.\n", file_number^, wav_count) + fmt.printf("💽 [#%d] %d WAV files.\n", file_number^, wav_count) } append(job_list, strings.clone(path)) file_number^ += 1 |