From bf67c9cce225a64df50f48b3e9524ffc44909670 Mon Sep 17 00:00:00 2001 From: Intel A80486DX2-66 Date: Tue, 9 Jan 2024 23:19:38 +0300 Subject: [PATCH] bytebeat_compiler.py: optimize the condition --- bytebeat_compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bytebeat_compiler.py b/bytebeat_compiler.py index 4a69bd5..bd018b0 100644 --- a/bytebeat_compiler.py +++ b/bytebeat_compiler.py @@ -148,7 +148,7 @@ if __name__ == "__main__": final_sample_rate_code = "" if args.faster_sample_ratio_math: args.precalculate_ratio = True - if not args.final_sample_rate is None and args.precalculate_ratio: + if args.precalculate_ratio and not args.final_sample_rate is None: if args.faster_sample_ratio_math: sample_rate_ratio = args.sample_rate / args.final_sample_rate final_sample_rate_code = f"w *= {sample_rate_ratio}L;"