Skip to content

Commit 8147c42

Browse files
committed
Minimal fix (#46)
1 parent 0e406b0 commit 8147c42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utilities.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export class Utils {
3737
}
3838

3939
static getByteAt = function (data: DataView, start: number): number {
40-
return data.getInt8(start);
40+
return data.getUint8(start);
4141
};
4242

4343
static getShortAt = function (

0 commit comments

Comments
 (0)