Fix typo in solve

This commit is contained in:
redfast00 2020-09-09 15:32:47 +02:00
parent 4db6ca04c1
commit 113b2c26ed
No known key found for this signature in database
GPG key ID: 5946E0E34FD0553C

View file

@ -225,7 +225,7 @@ inline void send_m_strike(struct module from, uint8_t count) {
*/
inline void send_m_solved(struct module from) {
assert(from.type != OBUS_TYPE_CONTROLLER);
struct message msg = _msg(from, false, OBUS_MSGTYPE_M_STRIKE);
struct message msg = _msg(from, false, OBUS_MSGTYPE_M_SOLVED);
send(&msg);
}