Explorar el Código

Convert Octal-Mode to Decimal (#3041)

Apparently C# doesn't use 0 as a prefix like C does.
edisionnano hace 4 años
padre
commit
0a0a95fd81
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Ryujinx/Modules/Updater/Updater.cs

+ 1 - 1
Ryujinx/Modules/Updater/Updater.cs

@@ -396,7 +396,7 @@ namespace Ryujinx.Modules
 
             if (!OperatingSystem.IsWindows())
             {
-                chmod(ryuBin, 0777);
+                chmod(ryuBin, 493);
             }
         }