From 0a0a95fd815ad5726783ba10d4d5d9910a0bab73 Mon Sep 17 00:00:00 2001 From: edisionnano Date: Wed, 26 Jan 2022 00:31:04 +0200 Subject: [PATCH] Convert Octal-Mode to Decimal (#3041) Apparently C# doesn't use 0 as a prefix like C does. --- Ryujinx/Modules/Updater/Updater.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx/Modules/Updater/Updater.cs b/Ryujinx/Modules/Updater/Updater.cs index 4a96208fa..f3a250158 100644 --- a/Ryujinx/Modules/Updater/Updater.cs +++ b/Ryujinx/Modules/Updater/Updater.cs @@ -396,7 +396,7 @@ namespace Ryujinx.Modules if (!OperatingSystem.IsWindows()) { - chmod(ryuBin, 0777); + chmod(ryuBin, 493); } }