Skip to content

Commit

Permalink
Merge branch 'trunk' of https://github.com/lrre-foss/rnr into trunk
Browse files Browse the repository at this point in the history
  • Loading branch information
rjindael committed Jul 18, 2023
2 parents 4811cf2 + d976800 commit 296496d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dependencies/Luau
Submodule Luau updated from 218159 to e25de9
4 changes: 2 additions & 2 deletions Projects/Client/Player/Source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

int main(int argc, char** argv)
{
if (!fs::is_directory("ShaderCache") || !fs::exists("ShaderCache"))
fs::create_directory("ShaderCache");
if (!std::filesystem::is_directory("ShaderCache") || !std::filesystem::exists("ShaderCache")) {
std::filesystem::create_directory("ShaderCache");
}

QApplication app(argc, argv);
Expand Down
4 changes: 2 additions & 2 deletions Projects/Client/Studio/Source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

int main(int argc, char** argv)
{
if (!fs::is_directory("ShaderCache") || !fs::exists("ShaderCache"))
fs::create_directory("ShaderCache");
if (!std::filesystem::is_directory("ShaderCache") || !std::filesystem::exists("ShaderCache")) {
std::filesystem::create_directory("ShaderCache");
}

QSurfaceFormat format;
Expand Down

0 comments on commit 296496d

Please sign in to comment.