New machine, new lint

This commit is contained in:
Will Scullin 2020-07-20 17:12:50 -07:00
parent eb6b5620a5
commit b2afdf7a36
No known key found for this signature in database
GPG Key ID: 26DCD1042C6638CD
2 changed files with 3 additions and 3 deletions

View File

@ -495,7 +495,7 @@ export default function Apple2IO(cpu, callbacks)
sampleRate: function sampleRate(rate, sample_size) {
_rate = rate;
_sample_size = sample_size
_sample_size = sample_size;
_sample = new Array(_sample_size);
_sampleIdx = 0;
_calcSampleRate();

View File

@ -15,8 +15,8 @@ import { debug } from '../util';
* Audio Handling
*/
var SAMPLE_SIZE = 1024
var SAMPLE_RATE = 44000
var SAMPLE_SIZE = 1024;
var SAMPLE_RATE = 44000;
export default function Audio(io) {
var sound = true;