Merge remote-tracking branch 'origin/GT-3041_emteere_PR-567_mumbel_tricore'

This commit is contained in:
Ryan Kurtz 2019-08-02 11:34:38 -04:00
commit 64e83b1d93
21 changed files with 18286 additions and 4 deletions

View file

@ -323,9 +323,15 @@ public class ParamEntry {
size = SpecXmlUtils.decodeInt(entry.getValue());
else if (name.equals("metatype")) { // Not implemented at the moment
String meta = entry.getValue();
// TODO: Currently only supporting "float" and "unknown" metatypes
if ((meta != null)&&(meta.equals("float")))
type = TYPE_FLOAT;
// TODO: Currently only supporting "float", "ptr", and "unknown" metatypes
if ((meta != null)) {
if (meta.equals("float")) {
type = TYPE_FLOAT;
}
else if (meta.equals("ptr")) {
type = TYPE_PTR;
}
}
}
else if (name.equals("group")) // Override the group
group = SpecXmlUtils.decodeInt(entry.getValue());