Skip to content

Commit 4a08387

Browse files
committed
Fix syntax error
1 parent 1e2eb10 commit 4a08387

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ports/raspberrypi/common-hal/picodvi/Framebuffer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ void common_hal_picodvi_framebuffer_construct(picodvi_framebuffer_obj_t *self,
150150
timing = &dvi_timing_640x480p_60hz;
151151
} else if ((width == 800 && height == 480) ||
152152
(width == 400 && height == 240) ||
153-
(width == 800 && height == 240) ||
153+
(width == 800 && height == 240)
154154
) {
155155
timing = &dvi_timing_800x480p_60hz;
156156
} else {

0 commit comments

Comments
 (0)