Skip to content

Commit 48b563f

Browse files
committed
fix missing field
1 parent 0570c89 commit 48b563f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

initPTB.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,10 +200,10 @@ function initDebug(cfg)
200200
% at the begining of the experiment)
201201
PsychPortAudio('Volume', cfg.audio.pahandle, cfg.audio.initVolume);
202202

203-
cfg.audio.pushSize = cfg.fs*0.010; %! push N ms only
203+
cfg.audio.pushSize = cfg.audio.fs * 0.010; %! push N ms only
204204

205205
cfg.audio.requestOffsetTime = 1; % offset 1 sec
206-
cfg.audio.reqsSampleOffset = cfg.audio.requestOffsetTime*cfg.audio.fs;
206+
cfg.audio.reqsSampleOffset = cfg.audio.requestOffsetTime * cfg.audio.fs;
207207

208208
end
209209
end

0 commit comments

Comments
 (0)