From a738f92c2475a99fe04b155dd4aceea6d344f1cb Mon Sep 17 00:00:00 2001 From: Gabriel <gabriel+github@mastergk.de> Date: Thu, 21 Apr 2022 11:22:20 +0200 Subject: [PATCH] gencache: Increase recursion depth to 4 Otherwise this will not pickup translated assets by default --- gencache/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gencache/src/main.cpp b/gencache/src/main.cpp index dd0798c..ac486c5 100644 --- a/gencache/src/main.cpp +++ b/gencache/src/main.cpp @@ -98,7 +98,7 @@ int main(int argc, const char* argv[]) { struct stat path_info; /* defaults */ - int recursion_depth = 3; + int recursion_depth = 4; bool pretty_print = false; std::string path = "."; std::string output = "index.json";