Skip to content

Commit

Permalink
Add missing change for previous commit - monitor drawing bitmaps with…
Browse files Browse the repository at this point in the history
… rotation in FakeDispaly testing support class.
  • Loading branch information
przemek83 committed Oct 9, 2024
1 parent 39dcbbe commit de5b741
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/FakeDisplay.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@ class FakeDisplay : public Display
void drawScaledBitmapWithRotation(
[[maybe_unused]] ResourceType resourceType, [[maybe_unused]] int x,
[[maybe_unused]] int y, [[maybe_unused]] int size,
[[maybe_unused]] int degrees) const override {};
[[maybe_unused]] int degrees) const override
{
changedAreas_.push_back({resourceType, x, y});
};

void clearScreenWithBlack() override {};

Expand Down

0 comments on commit de5b741

Please sign in to comment.