Skip to content

Commit

Permalink
fixing bug modm-io#1024
Browse files Browse the repository at this point in the history
  • Loading branch information
lukh authored and salkinium committed May 26, 2023
1 parent 72ed78e commit bfbfdfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modm/ui/display/monochrome_graphic_display_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ void
modm::MonochromeGraphicDisplay<Width, Height, BufferWidth, BufferHeight>::clear()
{
std::fill(&buffer[0][0], &buffer[0][0] + sizeof(buffer), 0);
this->cursor = {0, 0};
this->cursor = modm::glcd::Point{0, 0};
}

0 comments on commit bfbfdfa

Please sign in to comment.