LURE: Fix for #3087842 - Code analysis warnings
This is a somewhat cleaner version than my previous commit svn-id: r53516
This commit is contained in:
parent
41e9691e86
commit
e868dcd804
1 changed files with 1 additions and 1 deletions
|
@ -875,7 +875,7 @@ CharacterScheduleEntry::CharacterScheduleEntry(CharacterScheduleEntry *src) {
|
|||
_parent = src->_parent;
|
||||
_action = src->_action;
|
||||
_numParams = src->_numParams;
|
||||
Common::copy((byte *)src->_params, (byte *)src->_params + MAX_TELL_COMMANDS * 3 * sizeof(uint16), _params);
|
||||
Common::copy(src->_params, src->_params + MAX_TELL_COMMANDS * 3, _params);
|
||||
}
|
||||
|
||||
uint16 CharacterScheduleEntry::param(int index) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue