Skip to content

Commit 1d0bb5e

Browse files
committed
Merge branch 'master' into develop
2 parents 23bbb76 + af90c54 commit 1d0bb5e

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"license": "MIT",
1818
"dependencies": {
1919
},
20-
"version": "0.8.2",
20+
"version": "0.8.3",
2121
"frameworks": "arduino",
2222
"platforms": "espressif32"
2323
}

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=M5Stack_Avatar
2-
version=0.8.2
2+
version=0.8.3
33
author=Shinya Ishikawa
44
maintainer=Shinya Ishikawa<ishikawa.s.1027@gmail.com>
55
sentence=Yet another avatar module for M5Stack

src/Effect.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class Effect final : public Drawable {
5959
}
6060

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

0 commit comments

Comments
 (0)