Skip to content

Commit 3a2e8ad

Browse files
committed
_SndVol fix (#166)
1 parent 344560f commit 3a2e8ad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

qb.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1432,7 +1432,7 @@ var QB = new function() {
14321432
this.sub__SndVol = function(sid, v) {
14331433
_assertNumber(sid, 1);
14341434
_assertNumber(v, 2);
1435-
GX.soundVolumne(sid, v);
1435+
GX.soundVolume(sid, v);
14361436
};
14371437

14381438
this.func__StartDir = function() {

service-worker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// Names of the two caches used in this version of the service worker.
1515
// Change to v2, etc. when you update any of the local resources, which will
1616
// in turn trigger the install event again.
17-
const PRECACHE = 'precache-v51';
17+
const PRECACHE = 'precache-v52';
1818
const RUNTIME = 'runtime';
1919
const PREFIX = (self.location.origin.indexOf("github.io") == -1) ? "/" : "/qbjs/";
2020

0 commit comments

Comments
 (0)