Skip to content

Commit

Permalink
Fix linux executable name after BNG0.33.2 (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
lionkor authored Sep 28, 2024
2 parents 54cd5b5 + 0ffed00 commit 7600372
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GameStart.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 7600372

Please sign in to comment.