jsbeeb 1.9.0 → 1.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "name": "jsbeeb",
8
8
  "description": "Emulate a BBC Micro",
9
9
  "repository": "git@github.com:mattgodbolt/jsbeeb.git",
10
- "version": "1.9.0",
10
+ "version": "1.9.1",
11
11
  "//": "If you change the version of Node, it must also be updated at the top of the Dockerfile.",
12
12
  "engines": {
13
13
  "node": "22"
package/src/soundchip.js CHANGED
@@ -424,4 +424,10 @@ export class FakeSoundChip {
424
424
  tone: () => {},
425
425
  };
426
426
  }
427
+
428
+ snapshotState() {
429
+ return {};
430
+ }
431
+
432
+ restoreState() {}
427
433
  }
package/src/video.js CHANGED
@@ -1106,4 +1106,10 @@ export class FakeVideo {
1106
1106
  polltime() {}
1107
1107
 
1108
1108
  setScreenHwScroll() {}
1109
+
1110
+ snapshotState() {
1111
+ return {};
1112
+ }
1113
+
1114
+ restoreState() {}
1109
1115
  }