Skip to content

Commit

Permalink
Display unsigned before signed int64 (#482)
Browse files Browse the repository at this point in the history
Keep the unsigned format before the signed format, to be consistent with all other formats
  • Loading branch information
jogo- authored Feb 4, 2024
1 parent 7eca72a commit 0fd1014
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion media/editor/dataInspectorProperties.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ const inspectTypesBuilder: IInspectableType[] = [
{ label: "uint32", minBytes: 4, convert: (dv, le) => dv.getUint32(0, le).toString() },
{ label: "int32", minBytes: 4, convert: (dv, le) => dv.getInt32(0, le).toString() },

{ label: "int64", minBytes: 8, convert: (dv, le) => dv.getBigInt64(0, le).toString() },
{ label: "uint64", minBytes: 8, convert: (dv, le) => dv.getBigUint64(0, le).toString() },
{ label: "int64", minBytes: 8, convert: (dv, le) => dv.getBigInt64(0, le).toString() },

{
label: "float16",
Expand Down

0 comments on commit 0fd1014

Please sign in to comment.