Fix VS warning

This commit is contained in:
Michał Janiszewski 2016-05-03 16:47:31 +02:00
parent 580789bcf4
commit ea075fb736
1 changed files with 1 additions and 1 deletions

View File

@ -2580,7 +2580,7 @@ void object_reset(int type, void *objectEntry, uint32 entryIndex)
{
assert(type >= OBJECT_TYPE_RIDE && type <= OBJECT_TYPE_SCENARIO_TEXT);
const object_type_vtable *vtable = object_type_vtables[type];
return vtable->reset(objectEntry, entryIndex);
vtable->reset(objectEntry, entryIndex);
}
/**