From ee5880b92cc23c8520b10ef123098ad392044344 Mon Sep 17 00:00:00 2001 From: David Protzman Date: Sat, 13 May 2023 12:44:00 -0400 Subject: [PATCH] Got the ispc logic backward --- matlab/updated_scripts/process_file.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matlab/updated_scripts/process_file.m b/matlab/updated_scripts/process_file.m index a298c01..11004bd 100644 --- a/matlab/updated_scripts/process_file.m +++ b/matlab/updated_scripts/process_file.m @@ -20,7 +20,7 @@ end % THIS CAN BE COMMENTED OUT IF NEEDED!!! JUST MAKE SURE TO COMMENT OUT THE `saveas` CALL LATER AS WELL mkdir(fullfile(this_script_path, "images")); -if (~ ispc) +if (ispc) turbo_decoder_path = fullfile(this_script_path, filesep, '..', filesep, '..', filesep, 'cpp', filesep, 'remove_turbo.exe'); else turbo_decoder_path = fullfile(this_script_path, filesep, '..', filesep, '..', filesep, 'cpp', filesep, 'remove_turbo');