Skip to content

Commit 546ee3e

Browse files
committed
remove rounding in degToPix
1 parent 0ab3ab8 commit 546ee3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/degToPix.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@
2323
deg = getfield(structure, fieldName); %#ok<GFLD>
2424

2525
structure = setfield(structure, [fieldName 'Pix'], ...
26-
floor(deg * cfg.screen.ppd)); %#ok<SFLD>
26+
deg * cfg.screen.ppd); %#ok<SFLD>
2727

2828
end

0 commit comments

Comments
 (0)