Skip to content

Commit

Permalink
fixed bash for loop, now testing using env variable instead of modify…
Browse files Browse the repository at this point in the history
…ing all_changed_files
  • Loading branch information
rjwignar committed Nov 25, 2023
1 parent 673abaf commit d927b42
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/clang_format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ jobs:
# echo $PROCESS_OUTPUT
IFS=$',' read -a MODIFIED_FILES_ARRAY <<< "${{ steps.changed-files.outputs.all_changed_files }}"
for (( i=0; i<${LIST_LENGTH}; i++ )); do
LEN=${#MODIFIED_FILES_ARRAY[*]}
echo $LEN
for (( i=0; i<${LEN}; i++ )); do
echo "${MODIFIED_FILES_ARRAY[$i]}"
done
PROCESS_OUTPUT="${PROCESS_OUTPUT// /\\ }"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ struct PerPassParallax
uint ShadowsEndFade;
};


StructuredBuffer<PerPassParallax> perPassParallax : register(t30);

#include "ComplexParallaxMaterials/CRPM.hlsli"
1 change: 1 addition & 0 deletions src/Features/DistantTreeLighting.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ void DistantTreeLighting::DrawSettings()
ImGui::EndTooltip();
}


ImGui::Spacing();
ImGui::Spacing();
ImGui::TreePop();
Expand Down

0 comments on commit d927b42

Please sign in to comment.