From 48c4c409b83c6ab8c00b64efb087cf0eb9bb8597 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 17 May 2022 12:33:20 +1000 Subject: Fix DPX/CINEON writing full file paths into image headers on WIN32 Use back-slashes to find the file-name component on windows. --- source/blender/imbuf/intern/cineon/logImageCore.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'source/blender/imbuf/intern/cineon/logImageCore.h') diff --git a/source/blender/imbuf/intern/cineon/logImageCore.h b/source/blender/imbuf/intern/cineon/logImageCore.h index 8366927a95b..35540497828 100644 --- a/source/blender/imbuf/intern/cineon/logImageCore.h +++ b/source/blender/imbuf/intern/cineon/logImageCore.h @@ -19,6 +19,12 @@ #include "BLI_sys_types.h" #include "BLI_utildefines.h" +#ifdef _WIN32 +# define PATHSEP_CHAR '\\' +#else +# define PATHSEP_CHAR '/' +#endif + #ifdef __cplusplus extern "C" { #endif -- cgit v1.2.3