Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions scripts/util.lua
Original file line number Diff line number Diff line change
Expand Up @@ -121,13 +121,15 @@ _G.get_descriptor_name = function(v)
if (v>=0) and (v < #STD_DESCRIPTOR_NAME) then
return STD_DESCRIPTOR_NAME[v+1] .. " Descriptor"
elseif v == macro_defs.REPORT_DESC then
return "Report Descritpor"
return "Report Descriptor"
elseif v == macro_defs.FUNC_DESC then
return "Function Descritpor"
return "Function Descriptor"
elseif v == macro_defs.HUB_DESC then
return "HUB Descritpor"
elseif v == macro_defs.IAD_DESC then
return "IAD Descriptor"
else
return "Unknown Descritpor"
return "Unknown Descriptor"
end
end

Expand Down