mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-11 11:15:28 +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;
|
||||
else if (arg == "es20")
|
||||
mode = GeneratorMode.ES20;
|
||||
else if (arg == "cl10")
|
||||
else if (arg=="cl" || arg == "cl10")
|
||||
mode = GeneratorMode.CL10;
|
||||
else
|
||||
throw new NotImplementedException();
|
||||
|
|
Loading…
Reference in a new issue