mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-25 22:51:00 +00:00
* Main.cs: Accept -mode:cl as an alias for -mode:cl10
This commit is contained in:
parent
62e19c43a1
commit
66b8f317f4
|
@ -82,7 +82,7 @@ namespace Bind
|
||||||
mode = GeneratorMode.ES11;
|
mode = GeneratorMode.ES11;
|
||||||
else if (arg == "es20")
|
else if (arg == "es20")
|
||||||
mode = GeneratorMode.ES20;
|
mode = GeneratorMode.ES20;
|
||||||
else if (arg == "cl10")
|
else if (arg=="cl" || arg == "cl10")
|
||||||
mode = GeneratorMode.CL10;
|
mode = GeneratorMode.CL10;
|
||||||
else
|
else
|
||||||
throw new NotImplementedException();
|
throw new NotImplementedException();
|
||||||
|
|
Loading…
Reference in a new issue