1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-16 11:33:03 +01:00

Fix VS warning

This commit is contained in:
Michał Janiszewski
2016-05-03 16:47:31 +02:00
parent 580789bcf4
commit ea075fb736

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);
}
/**