Fix angle updating and remove empty callsign

This commit is contained in:
Joel Wetzell 2020-07-25 10:23:46 -05:00
parent f32584c553
commit 3ec41bc209
2 changed files with 12 additions and 5 deletions

View file

@ -129,6 +129,10 @@ public:
tag_ = new_tag;
}
void set_angle(uint16_t new_angle){
angle_ = new_angle;
}
private:
void draw_bearing(const Point origin, const uint16_t angle, uint32_t size, const Color color);