diff options
Diffstat (limited to 'grc/core/Constants.py')
-rw-r--r-- | grc/core/Constants.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/grc/core/Constants.py b/grc/core/Constants.py index 5d7565e647..7d27db104c 100644 --- a/grc/core/Constants.py +++ b/grc/core/Constants.py @@ -121,14 +121,18 @@ ALIAS_OF = { 'float': 'f32', 'int': 's32', 'short': 's16', + 'short': 'sc16', 'byte': 's8', + 'byte': 'sc8', 'bits': 'bit', 'fc32': 'complex', 'f32': 'float', 's32': 'int', 's16': 'short', + 'sc16': 'short', 's8': 'byte', + 'sc8': 'byte', 'bit': 'bits', } |