No need for const removal

This commit is contained in:
Garry Newman 2020-02-19 09:00:35 +00:00
parent 0a43db11ec
commit 2c54889462

View File

@ -13,7 +13,7 @@ namespace Generator
StartBlock( "internal static class Defines" );
foreach ( var o in def.Consts )
{
var type = o.Type.Substring( "const ".Length );
var type = o.Type;
type = Cleanup.ConvertType( type );
var val = o.Val;