fix
This commit is contained in:
parent
c25d49e32e
commit
a1e3984dfb
|
@ -35,7 +35,11 @@ namespace ratgdo {
|
|||
|
||||
struct cmd {
|
||||
uint64_t fixed;
|
||||
uint32_t data;
|
||||
uint32_t data;
|
||||
inline bool operator!=(cmd const &other) const
|
||||
{
|
||||
return (fixed != other.fixed || data != other.data);
|
||||
}
|
||||
};
|
||||
|
||||
typedef struct {
|
||||
|
|
Loading…
Reference in New Issue