Skip to content

Commit

Permalink
fix: PixFont test
Browse files Browse the repository at this point in the history
  • Loading branch information
ultraviolet-jordan committed Feb 4, 2024
1 parent 8a02d5b commit 1284219
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/js/jagex2/graphics/PixFont.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ export default class PixFont extends Hashable {
}

private readonly charMask: Int8Array[] = [];
private readonly charMaskWidth: Int32Array = new Int32Array(94);
private readonly charMaskHeight: Int32Array = new Int32Array(94);
private readonly charOffsetX: Int32Array = new Int32Array(94);
private readonly charOffsetY: Int32Array = new Int32Array(94);
private readonly charAdvance: Int32Array = new Int32Array(95);
private readonly drawWidth: Int32Array = new Int32Array(256);
readonly charMaskWidth: Int32Array = new Int32Array(94);
readonly charMaskHeight: Int32Array = new Int32Array(94);
readonly charOffsetX: Int32Array = new Int32Array(94);
readonly charOffsetY: Int32Array = new Int32Array(94);
readonly charAdvance: Int32Array = new Int32Array(95);
readonly drawWidth: Int32Array = new Int32Array(256);
private readonly random: JavaRandom = new JavaRandom(BigInt(Date.now()));

height: number = 0;
Expand Down

0 comments on commit 1284219

Please sign in to comment.