This commit is contained in:
J. Nick Koston 2023-06-09 15:16:25 -05:00
parent e7cb1fe27d
commit 4a64f56919
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -36,9 +36,9 @@ namespace ratgdo {
typedef struct { typedef struct {
uint64_t fixed; uint64_t fixed;
uint32_t data; 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; } command;