mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-06-20 20:28:01 +00:00
Parameter name "event" is not allowed in .Net. Replaced with "@event".
This commit is contained in:
parent
63a7a65fee
commit
68fcad4929
|
@ -329,6 +329,8 @@ namespace Bind.Structures
|
||||||
|
|
||||||
if (Name == "params")
|
if (Name == "params")
|
||||||
Name = "@params";
|
Name = "@params";
|
||||||
|
if (Name == "event")
|
||||||
|
Name = "@event";
|
||||||
|
|
||||||
// This causes problems with bool arrays
|
// This causes problems with bool arrays
|
||||||
//if (CurrentType.ToLower().Contains("bool"))
|
//if (CurrentType.ToLower().Contains("bool"))
|
||||||
|
|
Loading…
Reference in a new issue