Skip to content

Commit 760a10c

Browse files
committed
fix some varargout cell issues
1 parent cef527d commit 760a10c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

subfun/postInitializationSetup.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@
2222
cfg.dot.number = round(cfg.dot.density * ...
2323
(cfg.dot.matrixWidth / cfg.screen.ppd)^2);
2424

25-
varargout = cfg;
25+
varargout = {cfg};
2626

2727
end

subfun/preSaveSetup.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@
2323
thisEvent.fileID = logFile.fileID;
2424
thisEvent.extraColumns = logFile.extraColumns;
2525

26-
varargout = thisEvent;
26+
varargout = {thisEvent};
2727

2828
end

0 commit comments

Comments
 (0)