We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f781ff3 commit 1997deaCopy full SHA for 1997dea
1 file changed
src/utils/shader_compiler_watcher.hpp
@@ -3,6 +3,7 @@
3
#include <algorithm>
4
#include <chrono>
5
#include <exception>
6
+#include <filesystem>
7
#include <include/reshade.hpp>
8
9
#define NOMINMAX
@@ -99,7 +100,7 @@ static bool CompileCustomShaders() {
99
100
return false;
101
}
102
- for (const auto& entry : std::filesystem::directory_iterator(directory)) {
103
+ for (const auto& entry : std::filesystem::recursive_directory_iterator(directory)) {
104
if (!entry.is_regular_file()) continue;
105
106
const auto& entry_path = entry.path();
0 commit comments