This commit is contained in:
J. Nick Koston 2023-06-09 15:18:51 -05:00
parent 53407e58be
commit 8f64541823
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;
inline bool operator!=(command a) inline bool operator!=(const command& cmd) const
{ {
return (fixed != a.fixed || data != a.data); return (fixed != cmd.fixed || data != cmd.data);
} }
} command; } command;