From 0ffed00bcb68855d6b06dca595fbe427fab25ed3 Mon Sep 17 00:00:00 2001 From: O1LER <44237025+O1LER@users.noreply.github.com> Date: Fri, 27 Sep 2024 17:48:46 +0200 Subject: [PATCH] rename linux executable for bng0.33.2 --- src/GameStart.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GameStart.cpp b/src/GameStart.cpp index 183dc122..0dd553d2 100644 --- a/src/GameStart.cpp +++ b/src/GameStart.cpp @@ -97,7 +97,7 @@ void StartGame(std::string Dir) { #elif defined(__linux__) void StartGame(std::string Dir) { int status; - std::string filename = (Dir + "/BinLinux/BeamNG.x64"); + std::string filename = (Dir + "/BinLinux/BeamNG.drive.x64"); char* argv[] = { filename.data(), NULL }; pid_t pid; posix_spawn_file_actions_t spawn_actions;