Includes mods to greatly shorten the uiuc_recorder.cpp code.
This commit is contained in:
parent
6adfea97e4
commit
658a838ea0
1 changed files with 13 additions and 0 deletions
|
@ -38,6 +38,9 @@
|
|||
values can be recorded
|
||||
03/03/2003 (RD) Added flap_cmd_record
|
||||
03/16/2003 (RD) Added trigger record variables
|
||||
07/17/2003 (RD) Added error checking code (default
|
||||
routine) since it was removed from
|
||||
uiuc_menu_record()
|
||||
|
||||
----------------------------------------------------------------------
|
||||
|
||||
|
@ -2289,6 +2292,16 @@ void uiuc_recorder( double dt )
|
|||
fout << trigger_counter << " ";
|
||||
break;
|
||||
}
|
||||
default:
|
||||
{
|
||||
if (ignore_unknown_keywords) {
|
||||
// do nothing
|
||||
} else {
|
||||
// print error message
|
||||
uiuc_warnings_errors(2, *command_line);
|
||||
}
|
||||
break;
|
||||
}
|
||||
};
|
||||
} // end record map
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue