Skip to content

Commit bfbfdfa

Browse files
lukhsalkinium
authored andcommitted
fixing bug modm-io#1024
1 parent 72ed78e commit bfbfdfa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/modm/ui/display/monochrome_graphic_display_impl.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ void
2323
modm::MonochromeGraphicDisplay<Width, Height, BufferWidth, BufferHeight>::clear()
2424
{
2525
std::fill(&buffer[0][0], &buffer[0][0] + sizeof(buffer), 0);
26-
this->cursor = {0, 0};
26+
this->cursor = modm::glcd::Point{0, 0};
2727
}

0 commit comments

Comments
 (0)