mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 07:41:44 +00:00
Convert Octal-Mode to Decimal (#3041)
Apparently C# doesn't use 0 as a prefix like C does.
This commit is contained in:
parent
26019c7d06
commit
0a0a95fd81
1 changed files with 1 additions and 1 deletions
|
@ -396,7 +396,7 @@ namespace Ryujinx.Modules
|
|||
|
||||
if (!OperatingSystem.IsWindows())
|
||||
{
|
||||
chmod(ryuBin, 0777);
|
||||
chmod(ryuBin, 493);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue