fix
This commit is contained in:
parent
e7cb1fe27d
commit
4a64f56919
|
@ -36,9 +36,9 @@ namespace ratgdo {
|
|||
typedef struct {
|
||||
uint64_t fixed;
|
||||
uint32_t data;
|
||||
bool operator==(const command a) const
|
||||
bool operator!=(const command a) const
|
||||
{
|
||||
return (fixed == a.fixed && data == a.data);
|
||||
return (fixed != a.fixed || data != a.data);
|
||||
}
|
||||
} command;
|
||||
|
||||
|
|
Loading…
Reference in New Issue