Fix typo in command button checking of the compare() method
This commit is contained in:
parent
ddcd8f3566
commit
6c474065fe
|
@ -202,7 +202,7 @@ bool MovieRecord::Compare(MovieRecord& compareRec)
|
|||
|
||||
//if new commands are ever recordable, they need to be added here if we go with this method
|
||||
if(this->command_reset() != compareRec.command_reset()) return false;
|
||||
if(this->command_power() != compareRec.command_reset()) return false;
|
||||
if(this->command_power() != compareRec.command_power()) return false;
|
||||
if(this->command_fds_insert() != compareRec.command_fds_insert()) return false;
|
||||
if(this->command_fds_select() != compareRec.command_fds_select()) return false;
|
||||
|
||||
|
|
Loading…
Reference in New Issue