Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
mongonta0716 committed Jul 10, 2023
2 parents 23bbb76 + af90c54 commit 1d0bb5e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"license": "MIT",
"dependencies": {
},
"version": "0.8.2",
"version": "0.8.3",
"frameworks": "arduino",
"platforms": "espressif32"
}
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=M5Stack_Avatar
version=0.8.2
version=0.8.3
author=Shinya Ishikawa
maintainer=Shinya Ishikawa<[email protected]>
sentence=Yet another avatar module for M5Stack
Expand Down
2 changes: 1 addition & 1 deletion src/Effect.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class Effect final : public Drawable {
}

void drawAngerMark(M5Canvas *spi, uint32_t x, uint32_t y, uint32_t r,
uint16_t color, uint32_t bColor, float offset) {
uint16_t color, uint16_t bColor, float offset) {
r = r + abs(r * 0.4 * offset);
spi->fillRect(x - (r / 3), y - r, (r * 2) / 3, r * 2, color);
spi->fillRect(x - r, y - (r / 3), r * 2, (r * 2) / 3, color);
Expand Down

0 comments on commit 1d0bb5e

Please sign in to comment.