1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2024-11-29 03:33:48 +00:00
This commit is contained in:
fgenesis 2022-06-20 04:35:51 +02:00
parent 777de27dce
commit 21c51e06cb

View file

@ -476,7 +476,7 @@ std::string getWorkingDir()
#ifdef _WIN32
GetCurrentDirectoryA(sizeof(buf), buf);
#else
getcwd(buf, sizeof(buf))
getcwd(buf, sizeof(buf));
#endif
return buf;
}