Cleanup: trailing space, remove BOM

This commit is contained in:
Campbell Barton
2021-08-11 10:11:11 +10:00
parent fcd2d63b64
commit 55615e2600
2 changed files with 2 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ call "%BLENDER_DIR%\build_files\windows\parse_arguments.cmd" %*
if errorlevel 1 goto EOF if errorlevel 1 goto EOF
REM if it is one of the convenience targets and BLENDER_BIN is set REM if it is one of the convenience targets and BLENDER_BIN is set
REM skip compiler detection REM skip compiler detection
if "%ICONS%%ICONS_GEOM%%DOC_PY%" == "1" ( if "%ICONS%%ICONS_GEOM%%DOC_PY%" == "1" (
if EXIST "%BLENDER_BIN%" ( if EXIST "%BLENDER_BIN%" (
goto convenience_targets goto convenience_targets

View File

@@ -560,7 +560,7 @@ bool GPU_matrix_unproject_3fv(const float win[3],
if (!is_finite_v3(out)) { if (!is_finite_v3(out)) {
return false; return false;
} }
mul_v3_m4v3(r_world, model_inverted, out); mul_v3_m4v3(r_world, model_inverted, out);
return true; return true;
} }