From 21c51e06cb1e88b9c9a13e5979ee5c4afb9b22fc Mon Sep 17 00:00:00 2001 From: fgenesis Date: Mon, 20 Jun 2022 04:35:51 +0200 Subject: [PATCH] git gud --- BBGE/OSFunctions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BBGE/OSFunctions.cpp b/BBGE/OSFunctions.cpp index 6db9022..a1206e7 100644 --- a/BBGE/OSFunctions.cpp +++ b/BBGE/OSFunctions.cpp @@ -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; }