This commit is contained in:
floralrainfall 2023-07-18 02:34:52 -04:00
parent 6c6d98e8c8
commit 51da0f069f
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;