Fix typo in command button checking of the compare() method

This commit is contained in:
adelikat 2010-05-15 01:40:39 +00:00
parent ddcd8f3566
commit 6c474065fe
1 changed files with 1 additions and 1 deletions

View File

@ -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 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_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_insert() != compareRec.command_fds_insert()) return false;
if(this->command_fds_select() != compareRec.command_fds_select()) return false; if(this->command_fds_select() != compareRec.command_fds_select()) return false;