Skip to content

Commit

Permalink
type appeasement
Browse files Browse the repository at this point in the history
  • Loading branch information
wgreenberg committed Nov 28, 2024
1 parent 2f783e4 commit b2c9bb1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Common/Unity/AssetManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { GfxRenderCache } from '../../gfx/render/GfxRenderCache.js';
import { rust } from '../../rustlib.js';
import { assert, assertExists, fallbackUndefined } from '../../util.js';

function concatBufs(a: Uint8Array, b: Uint8Array): Uint8Array {
function concatBufs(a: Uint8Array, b: Uint8Array): Uint8Array<ArrayBuffer> {
let result = new Uint8Array(a.byteLength + b.byteLength);
result.set(a);
result.set(b, a.byteLength);
Expand Down
Binary file added src/assets/crunch.wasm
Binary file not shown.

0 comments on commit b2c9bb1

Please sign in to comment.