diff options
| author | edisionnano <samantas5855@gmail.com> | 2022-01-26 00:31:04 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-25 23:31:04 +0100 |
| commit | 0a0a95fd815ad5726783ba10d4d5d9910a0bab73 (patch) | |
| tree | 6ffa68e6c8d2c385ddceb5440eeb1da6077e8391 | |
| parent | 26019c7d06819c379a7097686bfcf8230d6a7fdd (diff) | |
Convert Octal-Mode to Decimal (#3041)
Apparently C# doesn't use 0 as a prefix like C does.
| -rw-r--r-- | Ryujinx/Modules/Updater/Updater.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx/Modules/Updater/Updater.cs b/Ryujinx/Modules/Updater/Updater.cs index 4a96208f..f3a25015 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); } } |
