From 00121d7c14a3bfa03c5eeb6c28b5edf060baf029 Mon Sep 17 00:00:00 2001 From: San Jacobs Date: Thu, 11 Dec 2025 01:34:11 +0100 Subject: Clearer little print --- src/main.odin | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') 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 -- cgit v1.2.1