From 2f9cd2bb91d5183c64fcc0b7f46479e41b40fa50 Mon Sep 17 00:00:00 2001 From: pineappleEA Date: Sun, 18 Dec 2022 19:12:07 +0100 Subject: [PATCH] early-access version 3230 --- README.md | 2 +- src/yuzu/startup_checks.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2ee3ef3b6..667d579a7 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ yuzu emulator early access ============= -This is the source code for early-access 3229. +This is the source code for early-access 3230. ## Legal Notice diff --git a/src/yuzu/startup_checks.cpp b/src/yuzu/startup_checks.cpp index 43830d933..8321d1981 100755 --- a/src/yuzu/startup_checks.cpp +++ b/src/yuzu/startup_checks.cpp @@ -186,7 +186,7 @@ pid_t SpawnChild(const char* arg0) { return pid; } else if (pid == 0) { // child - execl(arg0, arg0, nullptr); + execlp(arg0, arg0, nullptr); const int err = errno; fmt::print(stderr, "execl failed with error {}\n", err); _exit(0);