Skip to content

Commit

Permalink
Update converter.mjs (#1188)
Browse files Browse the repository at this point in the history
  • Loading branch information
almic authored May 12, 2024
1 parent 7a41e6f commit bf958e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/_util/converter.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ for (let i = 0; i < 256; ++i) {
const e = i - 127;

// very small number (0, -0)
if (e < -27) {
if (e < -24) {
baseTable[i] = 0x0000;
baseTable[i | 0x100] = 0x8000;
shiftTable[i] = 24;
Expand Down

0 comments on commit bf958e6

Please sign in to comment.