Merge branch 'trunk' of https://github.com/lrre-foss/rnr into trunk

This commit is contained in:
rjindael 2023-07-17 23:47:46 -07:00
commit 296496d1a9
No known key found for this signature in database
GPG Key ID: D069369C906CCF31
3 changed files with 5 additions and 5 deletions

2
Dependencies/Luau vendored

@ -1 +1 @@
Subproject commit 218159140c7d79ae745e646da721d12331f536f5
Subproject commit e25de95445f2d635a125ab463426bb7fda017093

View File

@ -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);

View File

@ -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;