From 827c17a943e541588a9b6aef7acf37153516fe8d Mon Sep 17 00:00:00 2001 From: Aaron Johnon Date: Sat, 7 Sep 2024 02:45:28 -0500 Subject: [PATCH] low=>alt variable cleanup --- winbatch/encode-and-play.bat | 4 ++-- winbatch/run-numberstation.bat | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/winbatch/encode-and-play.bat b/winbatch/encode-and-play.bat index 97c292a..af7469a 100755 --- a/winbatch/encode-and-play.bat +++ b/winbatch/encode-and-play.bat @@ -18,7 +18,7 @@ set /p gsize="Enter the number group size: " set /p repeat="Do you want to repeat number groups (y/N)? " :: Ask whether to use the alt voice -set /p lowvoice="Do you want to use the alternate voice (y/N)? " +set /p altvoice="Do you want to use the alternate voice (y/N)? " :: Ask for the message input echo. @@ -34,7 +34,7 @@ if /i "%repeat%"=="y" ( ) :: Check if the user wants to use the alt voice -if /i "%lowvoice%"=="y" ( +if /i "%altvoice%"=="y" ( echo Using alternate voice with the -a flag. set flags=%flags% -a ) else ( diff --git a/winbatch/run-numberstation.bat b/winbatch/run-numberstation.bat index 1e4a5c3..d6a0b0b 100755 --- a/winbatch/run-numberstation.bat +++ b/winbatch/run-numberstation.bat @@ -5,7 +5,7 @@ setlocal set /p repeat="Do you want to repeat number groups (y/N)? " :: Ask whether to use the alt voice -set /p lowvoice="Do you want to use the alternate voice (y/N)? " +set /p altvoice="Do you want to use the alternate voice (y/N)? " :: Initialize flags set flags= @@ -19,7 +19,7 @@ if /i "%repeat%"=="y" ( ) :: Check if the user wants to use the alt voice -if /i "%lowvoice%"=="y" ( +if /i "%altvoice%"=="y" ( echo Using alternate voice with the -a flag. set flags=%flags% -a ) else (