Skip to content

Commit

Permalink
Fixed warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
jazz-soft committed Jul 8, 2021
1 parent 0be48f3 commit 3a6fa09
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bower.json
Expand Up @@ -26,6 +26,6 @@
"Gruntfile.js"
],
"dependencies": {
"jzz": "^1.3.5"
"jzz": "^1.3.6"
}
}
4 changes: 2 additions & 2 deletions javascript/JZZ.midi.SMF.js
Expand Up @@ -14,7 +14,7 @@
/* istanbul ignore next */
if (JZZ.MIDI.SMF) return;

var _ver = '1.5.4';
var _ver = '1.5.5';

var _now = JZZ.lib.now;
function _error(s) { throw new Error(s); }
Expand Down Expand Up @@ -417,9 +417,9 @@
var w = '';
var st;
var m;
var offset;
off = off || 0;
off += 8;
var offset = p + off;
while (p < s.length) {
m = _validate_number(this, s.substr(p, 4), offset, t, true);
p += m[0];
Expand Down

0 comments on commit 3a6fa09

Please sign in to comment.