mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-02-25 05:26:52 +00:00
* Main.cs: Do not use "/" as a separator, because this breaks
filesystem paths on Unix.
This commit is contained in:
parent
4d14448bbf
commit
aedaeb1276
|
@ -60,7 +60,7 @@ namespace Bind
|
||||||
{
|
{
|
||||||
if (a.StartsWith("--") || a.StartsWith("-") || a.StartsWith("/"))
|
if (a.StartsWith("--") || a.StartsWith("-") || a.StartsWith("/"))
|
||||||
{
|
{
|
||||||
string[] b = a.Split(new char[] { '-', '/', ':', '=' }, StringSplitOptions.RemoveEmptyEntries);
|
string[] b = a.Split(new char[] { '-', ':', '=' }, StringSplitOptions.RemoveEmptyEntries);
|
||||||
switch (b[0])
|
switch (b[0])
|
||||||
{
|
{
|
||||||
case "?":
|
case "?":
|
||||||
|
|
Loading…
Reference in a new issue