Skip to content

Commit

Permalink
chore: bump wasm files
Browse files Browse the repository at this point in the history
  • Loading branch information
thenick775 committed Mar 3, 2024
1 parent 15ea682 commit 5ae3a67
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gbajs3/src/emulator/mgba/mgba-emulator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export type GBAEmulator = {
disableKeyboardInput: () => void;
enableKeyboardInput: () => void;
filePaths: () => filePaths;
fsSync: () => void;
fsSync: () => Promise<void>;
getCurrentCheatsFile: () => Uint8Array;
getCurrentCheatsFileName: () => string | undefined;
getCurrentGameName: () => string | undefined;
Expand Down
4 changes: 3 additions & 1 deletion gbajs3/src/emulator/mgba/wasm/mgba.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/// <reference types="emscripten" />

declare namespace mGBA {
export interface filePaths {
root: string;
Expand Down Expand Up @@ -37,7 +39,7 @@ declare namespace mGBA {
buttonPress(name: string): void;
buttonUnpress(name: string): void;
FSInit(): Promise<void>;
FSSync(): void;
FSSync(): Promise<void>;
getMainLoopTiming(): number;
getSave(): Uint8Array;
getVolume(): number;
Expand Down
2 changes: 1 addition & 1 deletion gbajs3/src/emulator/mgba/wasm/mgba.js

Large diffs are not rendered by default.

Binary file modified gbajs3/src/emulator/mgba/wasm/mgba.wasm
Binary file not shown.

0 comments on commit 5ae3a67

Please sign in to comment.